Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement HTTP Authentication provider and allow ApiKey authentication by default. #58126

Merged
merged 4 commits into from
Feb 28, 2020

Conversation

azasypkin
Copy link
Member

@azasypkin azasypkin commented Feb 20, 2020

This PR moves HTTP authentication logic (the one that relies on HTTP Authorization: Basic/Bearer/ApiKey header) out of existing providers into a dedicated one. This new HTTP Authentication provider is enabled by default and also supports two additional features out of the box (configured via kibana.yml):

  • It allows authentication of the requests with Authorization HTTP header with schemes used by other currently enabled authentication providers (basic ---> Authorization: Basic xxxx, saml ---> Authorization: Bearer xxx etc.). It's needed for the BWC reasons, we may want to turn this off once all dependent code switches to API keys for authentication.

  • It allows authentication of the requests using Elasticsearch API keys within Authorization HTTP header (requirement for Authentication to Kibana using API Keys #56087)

So if we expand default configuration it will look like this:

xpack.security.authc:
  providers: [basic]
  http:
    enabled: true
    autoSchemesEnabled: true
    schemes: [apikey]

Also this new functionality can be used to allow requests to the Kibana APIs using Authorization: Basic xxx even if basic authentication provider isn't enabled (requirement for #53910). Here is example config:

xpack.security.authc:
  providers: [saml]
  saml.realm: saml1
  http.schemes: [apikey, basic]

The configuration above will allow user login only via SAML and additionally programmatic access to the Kibana APIs with authentication via Authorization: ApiKey xxx and Authorization: Basic xxx HTTP headers.

Note to reviewers: a big chunk of the changes are related to the tests (refactored them to finally remove sinon dependency).

Fixes: #56087, #53910
Prerequisite for: #53010

"Release Note: Kibana now allows authentication via Elasticsearch API keys by default."

@azasypkin azasypkin added release_note:enhancement Team:Security Team focused on: Auth, Users, Roles, Spaces, Audit Logging, and more! enhancement New value added to drive a business result Feature:Security/Authentication Platform Security - Authentication v7.7.0 labels Feb 20, 2020
@elasticmachine
Copy link
Contributor

Pinging @elastic/kibana-security (Team:Security)

: ({ username: 'awesome', full_name: 'Awesome D00d' } as AuthenticatedUser)
);
return authc;
}

export const authenticationMock = {
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

note: consumers are supposed to use mocks provided by the plugin itself and to not redefine it to be as much in sync with real types as possible.

throw error;
}
this.log.debug(`Attempting to authenticate a user`);
const user = authentication!.getCurrentUser(request);
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

note: getCurrentUser is synchronous and doesn't throw errors anymore, but it can return null.

['Basic xxx yyy', 'basic'],
['basic xxx', 'basic'],
['basic', 'basic'],
// We don't trim leading whitespaces in scheme.
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

note: we never trimmed so we're not changing anything here (not sure if Core HTTP service does this though).

@@ -4,9 +4,6 @@
* you may not use this file except in compliance with the Elastic License.
*/

import sinon from 'sinon';
Copy link
Member Author

@azasypkin azasypkin Feb 21, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

note: that's what caused 50%+ of the changes in this PR - I finally decided to drop support for sinon in auth provider tests as more changes in auth providers are coming (Login Selector) and I don't want to increase technical debt.


const authenticationResult = await provider.login(
httpServerMock.createKibanaRequest(),
httpServerMock.createKibanaRequest({ headers: {} }),

This comment was marked as resolved.

This comment was marked as resolved.

},
{
validate(value) {
if (value.providers.includes('http')) {

This comment was marked as resolved.

This comment was marked as resolved.


if (hasProvider('basic') && hasProvider('token')) {
log(
'Enabling both `basic` and `token` authentication providers in `xpack.security.authc.providers` is deprecated. Login page will only use `token` provider.'

This comment was marked as resolved.

This comment was marked as resolved.

@@ -9,7 +9,7 @@ import expect from '@kbn/expect/expect.js';
import { FtrProviderContext } from '../../ftr_provider_context';

export default function({ getService }: FtrProviderContext) {
const supertest = getService('supertest');
const supertestWithoutAuth = getService('supertestWithoutAuth');

This comment was marked as resolved.

This comment was marked as resolved.

@azasypkin azasypkin marked this pull request as ready for review February 21, 2020 16:59
@azasypkin azasypkin requested a review from a team as a code owner February 21, 2020 16:59
),
http: schema.object({
enabled: schema.boolean({ defaultValue: true }),
autoSchemesEnabled: schema.boolean({ defaultValue: true }),

This comment was marked as resolved.

This comment was marked as resolved.

This comment was marked as resolved.

@azasypkin azasypkin requested a review from kobelb February 21, 2020 17:56
@azasypkin
Copy link
Member Author

Hey @kobelb, this one is ready for the first review pass whenever you have time, thanks!

@kobelb
Copy link
Contributor

kobelb commented Feb 26, 2020

ACK: reviewing first thing tomorrow, apologies for the delay

Copy link
Contributor

@kobelb kobelb left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is just great! I really like the approach that you took here.

@@ -9,7 +9,7 @@ import expect from '@kbn/expect/expect.js';
import { FtrProviderContext } from '../../ftr_provider_context';

export default function({ getService }: FtrProviderContext) {
const supertest = getService('supertest');
const supertestWithoutAuth = getService('supertestWithoutAuth');

This comment was marked as resolved.


if (hasProvider('basic') && hasProvider('token')) {
log(
'Enabling both `basic` and `token` authentication providers in `xpack.security.authc.providers` is deprecated. Login page will only use `token` provider.'

This comment was marked as resolved.

),
http: schema.object({
enabled: schema.boolean({ defaultValue: true }),
autoSchemesEnabled: schema.boolean({ defaultValue: true }),

This comment was marked as resolved.

},
{
validate(value) {
if (value.providers.includes('http')) {

This comment was marked as resolved.


const authenticationResult = await provider.login(
httpServerMock.createKibanaRequest(),
httpServerMock.createKibanaRequest({ headers: {} }),

This comment was marked as resolved.


constructor(
protected readonly options: Readonly<AuthenticationProviderOptions>,
proxyOptions?: Readonly<Partial<HTTPAuthenticationProviderOptions>>

This comment was marked as resolved.

This comment was marked as resolved.


const mockScopedClusterClient = elasticsearchServiceMock.createScopedClusterClient();
mockScopedClusterClient.callAsCurrentUser.mockRejectedValue(new errors.ServiceUnavailable());
mockOptions.client.asScoped.mockReturnValue(mockScopedClusterClient);

const authenticationResult = await provider.authenticate(request, null);

This comment was marked as resolved.

This comment was marked as resolved.

@@ -105,6 +106,7 @@ const providerMap = new Map<
[TokenAuthenticationProvider.type, TokenAuthenticationProvider],
[OIDCAuthenticationProvider.type, OIDCAuthenticationProvider],
[PKIAuthenticationProvider.type, PKIAuthenticationProvider],
[HTTPAuthenticationProvider.type, HTTPAuthenticationProvider],
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do we get some benefit I'm not realizing from making the HTTPAuthenticationProvider part of the providerMap? If it wasn't part of the providerMap, could we get rid of the custom validate function? Separately, I was wondering whether we could pass all of the enabled providers into the HTTPAuthenticationProvider constructor, add a method to each provider to denote which auth header should be supported, and use this as the basis for isSchemeSupported...

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do we get some benefit I'm not realizing from making the HTTPAuthenticationProvider part of the providerMap?

Not really, was experimenting with different options and just stopped at some point.

If it wasn't part of the providerMap, could we get rid of the custom validate function?

Yep, that would simplify the config part.

Separately, I was wondering whether we could pass all of the enabled providers into the HTTPAuthenticationProvider constructor, add a method to each provider to denote which auth header should be supported, and use this as the basis for isSchemeSupported...

That's a great idea! But I'd propose slightly modified version - Authenticator will calculate proper supportedSchemes on its own and just give them to HTTPAuthenticationProvider so that it doesn't have to deal with other providers or even know that they exist. I'll make that change and you'll tell if it looks good to you or not :)

@azasypkin
Copy link
Member Author

@kobelb thanks for review! PR should be ready for another review pass.

@azasypkin azasypkin requested a review from kobelb February 27, 2020 13:42
Copy link
Contributor

@kobelb kobelb left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The improvements to the tests and the changes to the HTTP authentication provider look great!!

@azasypkin
Copy link
Member Author

7.x/7.7.0: 7fd27c3

@ruflin
Copy link
Contributor

ruflin commented Mar 2, 2020

Great to see this happening and having it enabled by default. @nchaulet We need to check in Fleet for the case this is disabled.

@kibanamachine
Copy link
Contributor

💔 Build Failed


Test Failures

Kibana Pipeline / kibana-xpack-agent / Chrome X-Pack UI Functional Tests.x-pack/test/functional/apps/machine_learning/anomaly_detection/single_metric_job·ts.machine learning anomaly detection single metric job cloning creates the job and finishes processing

Link to Jenkins

Standard Out

Failed Tests Reporter:
  - Test has not failed recently on tracked branches

[00:00:00]       │
[00:07:48]         └-: machine learning
[00:07:48]           └-> "before all" hook
[00:07:48]           └-> "before all" hook
[00:07:48]             │ debg creating role ml_source
[00:07:48]             │ info [o.e.x.s.a.r.TransportPutRoleAction] [kibana-ci-immutable-debian-tests-xl-1584715024230899445] added role [ml_source]
[00:07:48]             │ debg created role ml_source
[00:07:48]             │ debg creating role ml_dest
[00:07:48]             │ info [o.e.x.s.a.r.TransportPutRoleAction] [kibana-ci-immutable-debian-tests-xl-1584715024230899445] added role [ml_dest]
[00:07:48]             │ debg created role ml_dest
[00:07:48]             │ debg creating role ml_dest_readonly
[00:07:48]             │ info [o.e.x.s.a.r.TransportPutRoleAction] [kibana-ci-immutable-debian-tests-xl-1584715024230899445] added role [ml_dest_readonly]
[00:07:48]             │ debg created role ml_dest_readonly
[00:07:48]             │ debg creating role ml_ui_extras
[00:07:48]             │ info [o.e.x.s.a.r.TransportPutRoleAction] [kibana-ci-immutable-debian-tests-xl-1584715024230899445] added role [ml_ui_extras]
[00:07:48]             │ debg created role ml_ui_extras
[00:07:48]             │ debg creating user ml_poweruser
[00:07:48]             │ info [o.e.x.s.a.u.TransportPutUserAction] [kibana-ci-immutable-debian-tests-xl-1584715024230899445] added user [ml_poweruser]
[00:07:48]             │ debg created user ml_poweruser
[00:07:48]             │ debg creating user ml_viewer
[00:07:48]             │ info [o.e.x.s.a.u.TransportPutUserAction] [kibana-ci-immutable-debian-tests-xl-1584715024230899445] added user [ml_viewer]
[00:07:48]             │ debg created user ml_viewer
[00:11:04]           └-: anomaly detection
[00:11:05]             └-> "before all" hook
[00:11:05]             └-: single metric
[00:11:05]               └-> "before all" hook
[00:11:05]               └-> "before all" hook
[00:11:05]                 │ info [ml/farequote] Loading "mappings.json"
[00:11:05]                 │ info [ml/farequote] Loading "data.json.gz"
[00:11:05]                 │ info [o.e.c.m.MetaDataCreateIndexService] [kibana-ci-immutable-debian-tests-xl-1584715024230899445] [farequote] creating index, cause [api], templates [], shards [1]/[1], mappings [_doc]
[00:11:05]                 │ info [ml/farequote] Created index "farequote"
[00:11:05]                 │ debg [ml/farequote] "farequote" settings {"index":{"number_of_replicas":"1","number_of_shards":"1"}}
[00:11:05]                 │ info [o.e.c.m.MetaDataDeleteIndexService] [kibana-ci-immutable-debian-tests-xl-1584715024230899445] [.kibana_1/gxYjsX0DTJu3yZCqWcoIlg] deleting index
[00:11:05]                 │ info [o.e.c.m.MetaDataDeleteIndexService] [kibana-ci-immutable-debian-tests-xl-1584715024230899445] [.kibana_2/9FS24U2jQ0-pZyHPg0B5QA] deleting index
[00:11:05]                 │ info [ml/farequote] Deleted existing index [".kibana_2",".kibana_1"]
[00:11:05]                 │ info [o.e.c.m.MetaDataCreateIndexService] [kibana-ci-immutable-debian-tests-xl-1584715024230899445] [.kibana_1] creating index, cause [api], templates [], shards [1]/[0], mappings [_doc]
[00:11:05]                 │ info [ml/farequote] Created index ".kibana_1"
[00:11:05]                 │ debg [ml/farequote] ".kibana_1" settings {"index":{"auto_expand_replicas":"0-1","number_of_replicas":"0","number_of_shards":"1"}}
[00:11:13]                 │ info [o.e.c.m.MetaDataMappingService] [kibana-ci-immutable-debian-tests-xl-1584715024230899445] [.kibana_1/8TXTNF6ATY26XMPYCR-18Q] update_mapping [_doc]
[00:11:13]                 │ info [ml/farequote] Indexed 86274 docs into "farequote"
[00:11:13]                 │ info [ml/farequote] Indexed 11 docs into ".kibana_1"
[00:11:13]                 │ info [o.e.c.m.MetaDataMappingService] [kibana-ci-immutable-debian-tests-xl-1584715024230899445] [.kibana_1/8TXTNF6ATY26XMPYCR-18Q] update_mapping [_doc]
[00:11:13]                 │ debg Migrating saved objects
[00:11:14]                 │ proc [kibana]   log   [15:21:29.866] [info][savedobjects-service] Creating index .kibana_2.
[00:11:14]                 │ info [o.e.c.m.MetaDataCreateIndexService] [kibana-ci-immutable-debian-tests-xl-1584715024230899445] [.kibana_2] creating index, cause [api], templates [], shards [1]/[1], mappings [_doc]
[00:11:14]                 │ info [o.e.c.r.a.AllocationService] [kibana-ci-immutable-debian-tests-xl-1584715024230899445] updating number_of_replicas to [0] for indices [.kibana_2]
[00:11:14]                 │ proc [kibana]   log   [15:21:29.946] [info][savedobjects-service] Migrating .kibana_1 saved objects to .kibana_2
[00:11:14]                 │ info [o.e.c.m.MetaDataMappingService] [kibana-ci-immutable-debian-tests-xl-1584715024230899445] [.kibana_2/rJLr_d15SfG16W7BiRxJMQ] update_mapping [_doc]
[00:11:14]                 │ info [o.e.c.m.MetaDataMappingService] [kibana-ci-immutable-debian-tests-xl-1584715024230899445] [.kibana_2/rJLr_d15SfG16W7BiRxJMQ] update_mapping [_doc]
[00:11:14]                 │ info [o.e.c.m.MetaDataMappingService] [kibana-ci-immutable-debian-tests-xl-1584715024230899445] [.kibana_2/rJLr_d15SfG16W7BiRxJMQ] update_mapping [_doc]
[00:11:14]                 │ info [o.e.c.m.MetaDataMappingService] [kibana-ci-immutable-debian-tests-xl-1584715024230899445] [.kibana_2/rJLr_d15SfG16W7BiRxJMQ] update_mapping [_doc]
[00:11:14]                 │ proc [kibana]   log   [15:21:30.146] [info][savedobjects-service] Pointing alias .kibana to .kibana_2.
[00:11:14]                 │ proc [kibana]   log   [15:21:30.230] [info][savedobjects-service] Finished in 365ms.
[00:11:14]                 │ debg Creating calendar with id 'wizard-test-calendar'...
[00:11:14]                 │ info [o.e.c.m.MetaDataCreateIndexService] [kibana-ci-immutable-debian-tests-xl-1584715024230899445] [.ml-meta] creating index, cause [auto(bulk api)], templates [.ml-meta], shards [1]/[1], mappings [_doc]
[00:11:14]                 │ info [o.e.c.r.a.AllocationService] [kibana-ci-immutable-debian-tests-xl-1584715024230899445] updating number_of_replicas to [0] for indices [.ml-meta]
[00:11:14]                 │ info [o.e.c.m.MetaDataCreateIndexService] [kibana-ci-immutable-debian-tests-xl-1584715024230899445] [.ml-annotations-6] creating index, cause [api], templates [], shards [1]/[1], mappings [_doc]
[00:11:14]                 │ info [o.e.c.r.a.AllocationService] [kibana-ci-immutable-debian-tests-xl-1584715024230899445] updating number_of_replicas to [0] for indices [.ml-annotations-6]
[00:11:14]                 │ info [o.e.x.m.MlInitializationService] [kibana-ci-immutable-debian-tests-xl-1584715024230899445] Created ML annotations index and aliases
[00:11:14]                 │ info [o.e.c.m.MetaDataMappingService] [kibana-ci-immutable-debian-tests-xl-1584715024230899445] [.ml-meta/t6yYhNoSROeFt_7D_0upXQ] update_mapping [_doc]
[00:11:15]                 │ debg Waiting up to 30000ms for 'wizard-test-calendar' to be created...
[00:11:15]                 │ debg SecurityPage.forceLogout
[00:11:15]                 │ debg Find.existsByDisplayedByCssSelector('.login-form') with timeout=100
[00:11:15]                 │ debg --- retry.tryForTime error: .login-form is not displayed
[00:11:15]                 │ debg Redirecting to /logout to force the logout
[00:11:15]                 │ debg Waiting on the login form to appear
[00:11:15]                 │ debg Waiting up to 100000ms for login form...
[00:11:15]                 │ debg Find.existsByDisplayedByCssSelector('.login-form') with timeout=2500
[00:11:15]                 │ debg browser[INFO] http://localhost:6131/logout?_t=1584717691231 350 Refused to execute inline script because it violates the following Content Security Policy directive: "script-src 'unsafe-eval' 'self'". Either the 'unsafe-inline' keyword, a hash ('sha256-P5polb1UreUSOe5V/Pv7tc+yeZuJXiOi/3fqhGsU7BE='), or a nonce ('nonce-...') is required to enable inline execution.
[00:11:15]                 │
[00:11:15]                 │ debg browser[INFO] http://localhost:6131/bundles/app/logout/bootstrap.js 9:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:11:19]                 │ debg browser[INFO] http://localhost:6131/bundles/plugin/data/data.plugin.js 62:139970 "INFO: 2020-03-20T15:21:34Z
[00:11:19]                 │        Adding connection to http://localhost:6131/elasticsearch
[00:11:19]                 │
[00:11:19]                 │      "
[00:11:19]                 │ debg --- retry.tryForTime error: .login-form is not displayed
[00:11:19]                 │ debg browser[INFO] http://localhost:6131/login?_t=1584717691231 350 Refused to execute inline script because it violates the following Content Security Policy directive: "script-src 'unsafe-eval' 'self'". Either the 'unsafe-inline' keyword, a hash ('sha256-P5polb1UreUSOe5V/Pv7tc+yeZuJXiOi/3fqhGsU7BE='), or a nonce ('nonce-...') is required to enable inline execution.
[00:11:19]                 │
[00:11:19]                 │ debg browser[INFO] http://localhost:6131/bundles/app/login/bootstrap.js 9:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:11:20]                 │ debg Find.existsByDisplayedByCssSelector('.login-form') with timeout=2500
[00:11:22]                 │ debg browser[INFO] http://localhost:6131/bundles/plugin/data/data.plugin.js 62:139970 "INFO: 2020-03-20T15:21:37Z
[00:11:22]                 │        Adding connection to http://localhost:6131/elasticsearch
[00:11:22]                 │
[00:11:22]                 │      "
[00:11:22]                 │ debg navigating to login url: http://localhost:6131/login
[00:11:22]                 │ debg Navigate to: http://localhost:6131/login
[00:11:22]                 │ debg ... sleep(700) start
[00:11:22]                 │ debg browser[INFO] http://localhost:6131/login?_t=1584717698092 350 Refused to execute inline script because it violates the following Content Security Policy directive: "script-src 'unsafe-eval' 'self'". Either the 'unsafe-inline' keyword, a hash ('sha256-P5polb1UreUSOe5V/Pv7tc+yeZuJXiOi/3fqhGsU7BE='), or a nonce ('nonce-...') is required to enable inline execution.
[00:11:22]                 │
[00:11:22]                 │ debg browser[INFO] http://localhost:6131/bundles/app/login/bootstrap.js 9:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:11:23]                 │ debg ... sleep(700) end
[00:11:23]                 │ debg returned from get, calling refresh
[00:11:24]                 │ debg browser[INFO] http://localhost:6131/bundles/plugin/data/data.plugin.js 62:139970 "INFO: 2020-03-20T15:21:39Z
[00:11:24]                 │        Adding connection to http://localhost:6131/elasticsearch
[00:11:24]                 │
[00:11:24]                 │      "
[00:11:24]                 │ debg browser[INFO] http://localhost:6131/login?_t=1584717698092 350 Refused to execute inline script because it violates the following Content Security Policy directive: "script-src 'unsafe-eval' 'self'". Either the 'unsafe-inline' keyword, a hash ('sha256-P5polb1UreUSOe5V/Pv7tc+yeZuJXiOi/3fqhGsU7BE='), or a nonce ('nonce-...') is required to enable inline execution.
[00:11:24]                 │
[00:11:24]                 │ debg browser[INFO] http://localhost:6131/bundles/app/login/bootstrap.js 9:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:11:24]                 │ debg currentUrl = http://localhost:6131/login
[00:11:24]                 │          appUrl = http://localhost:6131/login
[00:11:24]                 │ debg Find.findByCssSelector('[data-test-subj="kibanaChrome"]') with timeout=60000
[00:11:26]                 │ debg browser[INFO] http://localhost:6131/bundles/plugin/data/data.plugin.js 62:139970 "INFO: 2020-03-20T15:21:41Z
[00:11:26]                 │        Adding connection to http://localhost:6131/elasticsearch
[00:11:26]                 │
[00:11:26]                 │      "
[00:11:26]                 │ debg ... sleep(501) start
[00:11:26]                 │ debg ... sleep(501) end
[00:11:26]                 │ debg in navigateTo url = http://localhost:6131/login#/
[00:11:26]                 │ debg TestSubjects.exists(statusPageContainer)
[00:11:26]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="statusPageContainer"]') with timeout=2500
[00:11:29]                 │ debg --- retry.tryForTime error: [data-test-subj="statusPageContainer"] is not displayed
[00:11:29]                 │ debg TestSubjects.setValue(loginUsername, ml_poweruser)
[00:11:29]                 │ debg TestSubjects.click(loginUsername)
[00:11:29]                 │ debg Find.clickByCssSelector('[data-test-subj="loginUsername"]') with timeout=10000
[00:11:29]                 │ debg Find.findByCssSelector('[data-test-subj="loginUsername"]') with timeout=10000
[00:11:29]                 │ debg TestSubjects.setValue(loginPassword, mlp001)
[00:11:29]                 │ debg TestSubjects.click(loginPassword)
[00:11:29]                 │ debg Find.clickByCssSelector('[data-test-subj="loginPassword"]') with timeout=10000
[00:11:29]                 │ debg Find.findByCssSelector('[data-test-subj="loginPassword"]') with timeout=10000
[00:11:29]                 │ debg TestSubjects.click(loginSubmit)
[00:11:29]                 │ debg Find.clickByCssSelector('[data-test-subj="loginSubmit"]') with timeout=10000
[00:11:29]                 │ debg Find.findByCssSelector('[data-test-subj="loginSubmit"]') with timeout=10000
[00:11:30]                 │ debg Find.findByCssSelector('[data-test-subj="kibanaChrome"] nav:not(.ng-hide) ') with timeout=20000
[00:11:34]                 │ debg browser[INFO] http://localhost:6131/app/kibana 350 Refused to execute inline script because it violates the following Content Security Policy directive: "script-src 'unsafe-eval' 'self'". Either the 'unsafe-inline' keyword, a hash ('sha256-P5polb1UreUSOe5V/Pv7tc+yeZuJXiOi/3fqhGsU7BE='), or a nonce ('nonce-...') is required to enable inline execution.
[00:11:34]                 │
[00:11:34]                 │ debg browser[INFO] http://localhost:6131/bundles/app/kibana/bootstrap.js 9:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:11:34]                 │ debg browser[INFO] http://localhost:6131/bundles/plugin/data/data.plugin.js 62:139970 "INFO: 2020-03-20T15:21:48Z
[00:11:34]                 │        Adding connection to http://localhost:6131/elasticsearch
[00:11:34]                 │
[00:11:34]                 │      "
[00:11:34]                 │ debg Finished login process currentUrl = http://localhost:6131/app/kibana#/home
[00:11:34]                 │ debg Waiting up to 20000ms for logout button visible...
[00:11:34]                 │ debg TestSubjects.exists(userMenuButton)
[00:11:34]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="userMenuButton"]') with timeout=2500
[00:11:34]                 │ debg TestSubjects.exists(userMenu)
[00:11:34]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="userMenu"]') with timeout=2500
[00:11:37]                 │ debg --- retry.tryForTime error: [data-test-subj="userMenu"] is not displayed
[00:11:37]                 │ debg TestSubjects.click(userMenuButton)
[00:11:37]                 │ debg Find.clickByCssSelector('[data-test-subj="userMenuButton"]') with timeout=10000
[00:11:37]                 │ debg Find.findByCssSelector('[data-test-subj="userMenuButton"]') with timeout=10000
[00:11:37]                 │ debg Waiting up to 20000ms for user menu opened...
[00:11:37]                 │ debg TestSubjects.exists(userMenu)
[00:11:37]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="userMenu"]') with timeout=2500
[00:11:37]                 │ debg TestSubjects.exists(userMenu > logoutLink)
[00:11:37]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="userMenu"] [data-test-subj="logoutLink"]') with timeout=2500
[00:11:37]               └-> job creation loads the job management page
[00:11:37]                 └-> "before each" hook: global before each
[00:11:37]                 │ debg navigating to ml url: http://localhost:6131/app/ml
[00:11:37]                 │ debg Navigate to: http://localhost:6131/app/ml
[00:11:38]                 │ debg ... sleep(700) start
[00:11:38]                 │ debg browser[INFO] http://localhost:6131/app/ml?_t=1584717713420 350 Refused to execute inline script because it violates the following Content Security Policy directive: "script-src 'unsafe-eval' 'self'". Either the 'unsafe-inline' keyword, a hash ('sha256-P5polb1UreUSOe5V/Pv7tc+yeZuJXiOi/3fqhGsU7BE='), or a nonce ('nonce-...') is required to enable inline execution.
[00:11:38]                 │
[00:11:38]                 │ debg browser[INFO] http://localhost:6131/bundles/app/ml/bootstrap.js 9:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:11:38]                 │ debg ... sleep(700) end
[00:11:38]                 │ debg returned from get, calling refresh
[00:11:39]                 │ debg browser[INFO] http://localhost:6131/app/ml?_t=1584717713420 350 Refused to execute inline script because it violates the following Content Security Policy directive: "script-src 'unsafe-eval' 'self'". Either the 'unsafe-inline' keyword, a hash ('sha256-P5polb1UreUSOe5V/Pv7tc+yeZuJXiOi/3fqhGsU7BE='), or a nonce ('nonce-...') is required to enable inline execution.
[00:11:39]                 │
[00:11:39]                 │ debg browser[INFO] http://localhost:6131/bundles/app/ml/bootstrap.js 9:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:11:39]                 │ debg currentUrl = http://localhost:6131/app/ml
[00:11:39]                 │          appUrl = http://localhost:6131/app/ml
[00:11:39]                 │ debg Find.findByCssSelector('[data-test-subj="kibanaChrome"]') with timeout=60000
[00:11:42]                 │ debg browser[INFO] http://localhost:6131/bundles/plugin/data/data.plugin.js 62:139970 "INFO: 2020-03-20T15:21:56Z
[00:11:42]                 │        Adding connection to http://localhost:6131/elasticsearch
[00:11:42]                 │
[00:11:42]                 │      "
[00:11:42]                 │ debg ... sleep(501) start
[00:11:42]                 │ debg ... sleep(501) end
[00:11:42]                 │ debg in navigateTo url = http://localhost:6131/app/ml#/overview?_g=(refreshInterval:(pause:!t,value:0))
[00:11:42]                 │ debg --- retry.try error: URL changed, waiting for it to settle
[00:11:43]                 │ debg ... sleep(501) start
[00:11:43]                 │ debg ... sleep(501) end
[00:11:43]                 │ debg in navigateTo url = http://localhost:6131/app/ml#/overview?_g=(refreshInterval:(pause:!t,value:0))
[00:11:43]                 │ debg TestSubjects.exists(statusPageContainer)
[00:11:43]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="statusPageContainer"]') with timeout=2500
[00:11:46]                 │ debg --- retry.tryForTime error: [data-test-subj="statusPageContainer"] is not displayed
[00:11:46]                 │ debg TestSubjects.click(~mlMainTab & ~anomalyDetection)
[00:11:46]                 │ debg Find.clickByCssSelector('[data-test-subj~="mlMainTab"][data-test-subj~="anomalyDetection"]') with timeout=10000
[00:11:46]                 │ debg Find.findByCssSelector('[data-test-subj~="mlMainTab"][data-test-subj~="anomalyDetection"]') with timeout=10000
[00:11:46]                 │ debg TestSubjects.exists(~mlMainTab & ~anomalyDetection & ~selected)
[00:11:46]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj~="mlMainTab"][data-test-subj~="anomalyDetection"][data-test-subj~="selected"]') with timeout=120000
[00:11:47]                 │ debg TestSubjects.exists(mlPageJobManagement)
[00:11:47]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="mlPageJobManagement"]') with timeout=120000
[00:11:47]                 │ debg TestSubjects.findAll(~mlSubTab)
[00:11:47]                 │ debg Find.allByCssSelector('[data-test-subj~="mlSubTab"]') with timeout=3
[00:11:47]                 │ debg TestSubjects.exists(~mlSubTab&~jobManagement)
[00:11:47]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj~="mlSubTab"][data-test-subj~="jobManagement"]') with timeout=1000
[00:11:47]                 │ debg TestSubjects.exists(~mlSubTab&~anomalyExplorer)
[00:11:47]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj~="mlSubTab"][data-test-subj~="anomalyExplorer"]') with timeout=1000
[00:11:47]                 │ debg TestSubjects.exists(~mlSubTab&~singleMetricViewer)
[00:11:47]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj~="mlSubTab"][data-test-subj~="singleMetricViewer"]') with timeout=1000
[00:11:47]                 │ debg TestSubjects.exists(~mlSubTab&~settings)
[00:11:47]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj~="mlSubTab"][data-test-subj~="settings"]') with timeout=1000
[00:11:47]                 │ debg TestSubjects.click(~mlSubTab & ~jobManagement)
[00:11:47]                 │ debg Find.clickByCssSelector('[data-test-subj~="mlSubTab"][data-test-subj~="jobManagement"]') with timeout=10000
[00:11:47]                 │ debg Find.findByCssSelector('[data-test-subj~="mlSubTab"][data-test-subj~="jobManagement"]') with timeout=10000
[00:11:47]                 │ debg TestSubjects.exists(~mlSubTab & ~jobManagement & ~selected)
[00:11:47]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj~="mlSubTab"][data-test-subj~="jobManagement"][data-test-subj~="selected"]') with timeout=120000
[00:11:47]                 │ debg TestSubjects.exists(mlPageJobManagement)
[00:11:47]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="mlPageJobManagement"]') with timeout=120000
[00:11:47]                 └- ✓ pass  (9.9s) "machine learning anomaly detection single metric job creation loads the job management page"
[00:11:47]               └-> job creation loads the new job source selection page
[00:11:47]                 └-> "before each" hook: global before each
[00:11:47]                 │ debg TestSubjects.clickWhenNotDisabled(mlCreateNewJobButton)
[00:11:47]                 │ debg Find.clickByCssSelectorWhenNotDisabled('[data-test-subj="mlCreateNewJobButton"]') with timeout=10000
[00:11:47]                 │ debg Find.findByCssSelector('[data-test-subj="mlCreateNewJobButton"]') with timeout=10000
[00:11:48]                 │ debg TestSubjects.exists(mlPageSourceSelection)
[00:11:48]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="mlPageSourceSelection"]') with timeout=120000
[00:11:48]                 └- ✓ pass  (404ms) "machine learning anomaly detection single metric job creation loads the new job source selection page"
[00:11:48]               └-> job creation loads the job type selection page
[00:11:48]                 └-> "before each" hook: global before each
[00:11:48]                 │ debg TestSubjects.setValue(savedObjectFinderSearchInput, farequote)
[00:11:48]                 │ debg TestSubjects.click(savedObjectFinderSearchInput)
[00:11:48]                 │ debg Find.clickByCssSelector('[data-test-subj="savedObjectFinderSearchInput"]') with timeout=10000
[00:11:48]                 │ debg Find.findByCssSelector('[data-test-subj="savedObjectFinderSearchInput"]') with timeout=10000
[00:11:48]                 │ debg TestSubjects.exists(savedObjectTitlefarequote)
[00:11:48]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="savedObjectTitlefarequote"]') with timeout=120000
[00:11:49]                 │ debg TestSubjects.clickWhenNotDisabled(savedObjectTitlefarequote)
[00:11:49]                 │ debg Find.clickByCssSelectorWhenNotDisabled('[data-test-subj="savedObjectTitlefarequote"]') with timeout=10000
[00:11:49]                 │ debg Find.findByCssSelector('[data-test-subj="savedObjectTitlefarequote"]') with timeout=10000
[00:11:49]                 │ debg TestSubjects.exists(mlPageJobTypeSelection)
[00:11:49]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="mlPageJobTypeSelection"]') with timeout=10000
[00:11:49]                 └- ✓ pass  (1.3s) "machine learning anomaly detection single metric job creation loads the job type selection page"
[00:11:49]               └-> job creation loads the single metric job wizard page
[00:11:49]                 └-> "before each" hook: global before each
[00:11:49]                 │ debg TestSubjects.clickWhenNotDisabled(mlJobTypeLinkSingleMetricJob)
[00:11:49]                 │ debg Find.clickByCssSelectorWhenNotDisabled('[data-test-subj="mlJobTypeLinkSingleMetricJob"]') with timeout=10000
[00:11:49]                 │ debg Find.findByCssSelector('[data-test-subj="mlJobTypeLinkSingleMetricJob"]') with timeout=10000
[00:11:49]                 │ debg TestSubjects.exists(mlPageJobWizard single_metric)
[00:11:49]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="mlPageJobWizard single_metric"]') with timeout=120000
[00:11:50]                 └- ✓ pass  (646ms) "machine learning anomaly detection single metric job creation loads the single metric job wizard page"
[00:11:50]               └-> job creation displays the time range step
[00:11:50]                 └-> "before each" hook: global before each
[00:11:50]                 │ debg TestSubjects.exists(mlJobWizardStepTitleTimeRange)
[00:11:50]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="mlJobWizardStepTitleTimeRange"]') with timeout=120000
[00:11:50]                 └- ✓ pass  (128ms) "machine learning anomaly detection single metric job creation displays the time range step"
[00:11:50]               └-> job creation sets the timerange
[00:11:50]                 └-> "before each" hook: global before each
[00:11:50]                 │ debg TestSubjects.clickWhenNotDisabled(mlButtonUseFullData)
[00:11:50]                 │ debg Find.clickByCssSelectorWhenNotDisabled('[data-test-subj="mlButtonUseFullData"]') with timeout=10000
[00:11:50]                 │ debg Find.findByCssSelector('[data-test-subj="mlButtonUseFullData"]') with timeout=10000
[00:11:50]                 │ debg TestSubjects.find(mlJobWizardDateRange)
[00:11:50]                 │ debg Find.findByCssSelector('[data-test-subj="mlJobWizardDateRange"]') with timeout=10000
[00:11:50]                 │ debg --- retry.tryForTime error: expected { startDate: 'Mar 20, 2020 @ 15:07:05.558',
[00:11:50]                 │        endDate: 'Mar 20, 2020 @ 15:22:05.559' } to sort of equal { startDate: 'Feb 7, 2016 @ 00:00:00.000',
[00:11:50]                 │        endDate: 'Feb 11, 2016 @ 23:59:54.000' }
[00:11:51]                 │ debg TestSubjects.find(mlJobWizardDateRange)
[00:11:51]                 │ debg Find.findByCssSelector('[data-test-subj="mlJobWizardDateRange"]') with timeout=10000
[00:11:51]                 └- ✓ pass  (887ms) "machine learning anomaly detection single metric job creation sets the timerange"
[00:11:51]               └-> job creation displays the event rate chart
[00:11:51]                 └-> "before each" hook: global before each
[00:11:51]                 │ debg TestSubjects.exists(~mlEventRateChart)
[00:11:51]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj~="mlEventRateChart"]') with timeout=120000
[00:11:51]                 │ debg TestSubjects.exists(mlEventRateChart withData)
[00:11:51]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="mlEventRateChart withData"]') with timeout=120000
[00:11:51]                 └- ✓ pass  (60ms) "machine learning anomaly detection single metric job creation displays the event rate chart"
[00:11:51]               └-> job creation displays the pick fields step
[00:11:51]                 └-> "before each" hook: global before each
[00:11:51]                 │ debg TestSubjects.exists(mlJobWizardNavButtonNext)
[00:11:51]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="mlJobWizardNavButtonNext"]') with timeout=120000
[00:11:51]                 │ debg TestSubjects.clickWhenNotDisabled(mlJobWizardNavButtonNext)
[00:11:51]                 │ debg Find.clickByCssSelectorWhenNotDisabled('[data-test-subj="mlJobWizardNavButtonNext"]') with timeout=10000
[00:11:51]                 │ debg Find.findByCssSelector('[data-test-subj="mlJobWizardNavButtonNext"]') with timeout=10000
[00:11:51]                 │ debg TestSubjects.exists(mlJobWizardStepTitlePickFields)
[00:11:51]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="mlJobWizardStepTitlePickFields"]') with timeout=120000
[00:11:51]                 └- ✓ pass  (225ms) "machine learning anomaly detection single metric job creation displays the pick fields step"
[00:11:51]               └-> job creation selects field and aggregation
[00:11:51]                 └-> "before each" hook: global before each
[00:11:51]                 │ debg TestSubjects.exists(mlJobWizardAggSelection > comboBoxInput)
[00:11:51]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="mlJobWizardAggSelection"] [data-test-subj="comboBoxInput"]') with timeout=120000
[00:11:51]                 │ debg comboBox.set, comboBoxSelector: mlJobWizardAggSelection > comboBoxInput
[00:11:51]                 │ debg TestSubjects.find(mlJobWizardAggSelection > comboBoxInput)
[00:11:51]                 │ debg Find.findByCssSelector('[data-test-subj="mlJobWizardAggSelection"] [data-test-subj="comboBoxInput"]') with timeout=10000
[00:11:51]                 │ debg comboBox.setElement, value: Mean(responsetime)
[00:11:51]                 │ debg comboBox.isOptionSelected, value: Mean(responsetime)
[00:11:54]                 │ debg TestSubjects.exists(~comboBoxOptionsList)
[00:11:54]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj~="comboBoxOptionsList"]') with timeout=2500
[00:11:54]                 │ debg Find.allByCssSelector('.euiFilterSelectItem[title^="Mean(responsetime)"]') with timeout=2500
[00:11:54]                 │ debg TestSubjects.exists(~comboBoxOptionsList)
[00:11:54]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj~="comboBoxOptionsList"]') with timeout=2500
[00:11:57]                 │ debg --- retry.tryForTime error: [data-test-subj~="comboBoxOptionsList"] is not displayed
[00:11:57]                 │ debg comboBox.getComboBoxSelectedOptions, comboBoxSelector: mlJobWizardAggSelection > comboBoxInput
[00:11:57]                 │ debg TestSubjects.find(mlJobWizardAggSelection > comboBoxInput)
[00:11:57]                 │ debg Find.findByCssSelector('[data-test-subj="mlJobWizardAggSelection"] [data-test-subj="comboBoxInput"]') with timeout=10000
[00:11:57]                 └- ✓ pass  (6.1s) "machine learning anomaly detection single metric job creation selects field and aggregation"
[00:11:57]               └-> job creation inputs the bucket span
[00:11:57]                 └-> "before each" hook: global before each
[00:11:57]                 │ debg TestSubjects.exists(mlJobWizardInputBucketSpan)
[00:11:57]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="mlJobWizardInputBucketSpan"]') with timeout=120000
[00:11:57]                 │ debg TestSubjects.setValueWithChecks(mlJobWizardInputBucketSpan, 30m)
[00:11:57]                 │ debg TestSubjects.click(mlJobWizardInputBucketSpan)
[00:11:57]                 │ debg Find.clickByCssSelector('[data-test-subj="mlJobWizardInputBucketSpan"]') with timeout=10000
[00:11:57]                 │ debg Find.findByCssSelector('[data-test-subj="mlJobWizardInputBucketSpan"]') with timeout=10000
[00:11:58]                 │ debg TestSubjects.getAttribute(mlJobWizardInputBucketSpan, value)
[00:11:58]                 │ debg TestSubjects.find(mlJobWizardInputBucketSpan)
[00:11:58]                 │ debg Find.findByCssSelector('[data-test-subj="mlJobWizardInputBucketSpan"]') with timeout=10000
[00:11:58]                 └- ✓ pass  (1.1s) "machine learning anomaly detection single metric job creation inputs the bucket span"
[00:11:58]               └-> job creation displays the job details step
[00:11:58]                 └-> "before each" hook: global before each
[00:11:58]                 │ debg TestSubjects.exists(mlJobWizardNavButtonNext)
[00:11:58]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="mlJobWizardNavButtonNext"]') with timeout=120000
[00:11:58]                 │ debg TestSubjects.clickWhenNotDisabled(mlJobWizardNavButtonNext)
[00:11:58]                 │ debg Find.clickByCssSelectorWhenNotDisabled('[data-test-subj="mlJobWizardNavButtonNext"]') with timeout=10000
[00:11:58]                 │ debg Find.findByCssSelector('[data-test-subj="mlJobWizardNavButtonNext"]') with timeout=10000
[00:11:59]                 │ debg TestSubjects.exists(mlJobWizardStepTitleJobDetails)
[00:11:59]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="mlJobWizardStepTitleJobDetails"]') with timeout=120000
[00:11:59]                 └- ✓ pass  (705ms) "machine learning anomaly detection single metric job creation displays the job details step"
[00:11:59]               └-> job creation inputs the job id
[00:11:59]                 └-> "before each" hook: global before each
[00:11:59]                 │ debg TestSubjects.exists(mlJobWizardInputJobId)
[00:11:59]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="mlJobWizardInputJobId"]') with timeout=120000
[00:11:59]                 │ debg TestSubjects.setValueWithChecks(mlJobWizardInputJobId, fq_single_1_1584717014370)
[00:11:59]                 │ debg TestSubjects.click(mlJobWizardInputJobId)
[00:11:59]                 │ debg Find.clickByCssSelector('[data-test-subj="mlJobWizardInputJobId"]') with timeout=10000
[00:11:59]                 │ debg Find.findByCssSelector('[data-test-subj="mlJobWizardInputJobId"]') with timeout=10000
[00:12:00]                 │ debg TestSubjects.getAttribute(mlJobWizardInputJobId, value)
[00:12:00]                 │ debg TestSubjects.find(mlJobWizardInputJobId)
[00:12:00]                 │ debg Find.findByCssSelector('[data-test-subj="mlJobWizardInputJobId"]') with timeout=10000
[00:12:00]                 └- ✓ pass  (1.3s) "machine learning anomaly detection single metric job creation inputs the job id"
[00:12:00]               └-> job creation inputs the job description
[00:12:00]                 └-> "before each" hook: global before each
[00:12:00]                 │ debg TestSubjects.exists(mlJobWizardInputJobDescription)
[00:12:00]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="mlJobWizardInputJobDescription"]') with timeout=120000
[00:12:00]                 │ debg TestSubjects.setValueWithChecks(mlJobWizardInputJobDescription, Create single metric job based on the farequote dataset with 30m bucketspan and mean(responsetime))
[00:12:00]                 │ debg TestSubjects.click(mlJobWizardInputJobDescription)
[00:12:00]                 │ debg Find.clickByCssSelector('[data-test-subj="mlJobWizardInputJobDescription"]') with timeout=10000
[00:12:00]                 │ debg Find.findByCssSelector('[data-test-subj="mlJobWizardInputJobDescription"]') with timeout=10000
[00:12:04]                 │ debg TestSubjects.getVisibleText(mlJobWizardInputJobDescription)
[00:12:04]                 │ debg TestSubjects.find(mlJobWizardInputJobDescription)
[00:12:04]                 │ debg Find.findByCssSelector('[data-test-subj="mlJobWizardInputJobDescription"]') with timeout=10000
[00:12:04]                 └- ✓ pass  (4.2s) "machine learning anomaly detection single metric job creation inputs the job description"
[00:12:04]               └-> job creation inputs job groups
[00:12:04]                 └-> "before each" hook: global before each
[00:12:04]                 │ debg TestSubjects.exists(mlJobWizardComboBoxJobGroups > comboBoxInput)
[00:12:04]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="mlJobWizardComboBoxJobGroups"] [data-test-subj="comboBoxInput"]') with timeout=120000
[00:12:05]                 │ debg comboBox.setCustom, comboBoxSelector: mlJobWizardComboBoxJobGroups > comboBoxInput, value: automated
[00:12:05]                 │ debg TestSubjects.find(mlJobWizardComboBoxJobGroups > comboBoxInput)
[00:12:05]                 │ debg Find.findByCssSelector('[data-test-subj="mlJobWizardComboBoxJobGroups"] [data-test-subj="comboBoxInput"]') with timeout=10000
[00:12:07]                 │ debg TestSubjects.exists(~comboBoxOptionsList)
[00:12:07]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj~="comboBoxOptionsList"]') with timeout=2500
[00:12:07]                 │ debg comboBox.getComboBoxSelectedOptions, comboBoxSelector: mlJobWizardComboBoxJobGroups > comboBoxInput
[00:12:07]                 │ debg TestSubjects.find(mlJobWizardComboBoxJobGroups > comboBoxInput)
[00:12:07]                 │ debg Find.findByCssSelector('[data-test-subj="mlJobWizardComboBoxJobGroups"] [data-test-subj="comboBoxInput"]') with timeout=10000
[00:12:07]                 │ debg comboBox.setCustom, comboBoxSelector: mlJobWizardComboBoxJobGroups > comboBoxInput, value: farequote
[00:12:07]                 │ debg TestSubjects.find(mlJobWizardComboBoxJobGroups > comboBoxInput)
[00:12:07]                 │ debg Find.findByCssSelector('[data-test-subj="mlJobWizardComboBoxJobGroups"] [data-test-subj="comboBoxInput"]') with timeout=10000
[00:12:09]                 │ debg TestSubjects.exists(~comboBoxOptionsList)
[00:12:09]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj~="comboBoxOptionsList"]') with timeout=2500
[00:12:09]                 │ debg comboBox.getComboBoxSelectedOptions, comboBoxSelector: mlJobWizardComboBoxJobGroups > comboBoxInput
[00:12:09]                 │ debg TestSubjects.find(mlJobWizardComboBoxJobGroups > comboBoxInput)
[00:12:09]                 │ debg Find.findByCssSelector('[data-test-subj="mlJobWizardComboBoxJobGroups"] [data-test-subj="comboBoxInput"]') with timeout=10000
[00:12:09]                 │ debg comboBox.setCustom, comboBoxSelector: mlJobWizardComboBoxJobGroups > comboBoxInput, value: single-metric
[00:12:09]                 │ debg TestSubjects.find(mlJobWizardComboBoxJobGroups > comboBoxInput)
[00:12:09]                 │ debg Find.findByCssSelector('[data-test-subj="mlJobWizardComboBoxJobGroups"] [data-test-subj="comboBoxInput"]') with timeout=10000
[00:12:12]                 │ debg TestSubjects.exists(~comboBoxOptionsList)
[00:12:12]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj~="comboBoxOptionsList"]') with timeout=2500
[00:12:12]                 │ debg comboBox.getComboBoxSelectedOptions, comboBoxSelector: mlJobWizardComboBoxJobGroups > comboBoxInput
[00:12:12]                 │ debg TestSubjects.find(mlJobWizardComboBoxJobGroups > comboBoxInput)
[00:12:12]                 │ debg Find.findByCssSelector('[data-test-subj="mlJobWizardComboBoxJobGroups"] [data-test-subj="comboBoxInput"]') with timeout=10000
[00:12:12]                 │ debg comboBox.getComboBoxSelectedOptions, comboBoxSelector: mlJobWizardComboBoxJobGroups > comboBoxInput
[00:12:12]                 │ debg TestSubjects.find(mlJobWizardComboBoxJobGroups > comboBoxInput)
[00:12:12]                 │ debg Find.findByCssSelector('[data-test-subj="mlJobWizardComboBoxJobGroups"] [data-test-subj="comboBoxInput"]') with timeout=10000
[00:12:12]                 └- ✓ pass  (7.4s) "machine learning anomaly detection single metric job creation inputs job groups"
[00:12:12]               └-> job creation opens the additional settings section
[00:12:12]                 └-> "before each" hook: global before each
[00:12:12]                 │ debg TestSubjects.exists(mlJobWizardAdditionalSettingsSection)
[00:12:12]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="mlJobWizardAdditionalSettingsSection"]') with timeout=2500
[00:12:12]                 │ debg --- retry.tryForTime error: [data-test-subj="mlJobWizardAdditionalSettingsSection"] is not displayed
[00:12:12]                 │ debg --- retry.tryForTime failed again with the same message...
[00:12:13]                 │ debg --- retry.tryForTime failed again with the same message...
[00:12:13]                 │ debg --- retry.tryForTime failed again with the same message...
[00:12:14]                 │ debg --- retry.tryForTime failed again with the same message...
[00:12:14]                 │ debg TestSubjects.click(mlJobWizardToggleAdditionalSettingsSection)
[00:12:14]                 │ debg Find.clickByCssSelector('[data-test-subj="mlJobWizardToggleAdditionalSettingsSection"]') with timeout=10000
[00:12:14]                 │ debg Find.findByCssSelector('[data-test-subj="mlJobWizardToggleAdditionalSettingsSection"]') with timeout=10000
[00:12:15]                 │ debg TestSubjects.exists(mlJobWizardAdditionalSettingsSection)
[00:12:15]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="mlJobWizardAdditionalSettingsSection"]') with timeout=1000
[00:12:15]                 └- ✓ pass  (2.7s) "machine learning anomaly detection single metric job creation opens the additional settings section"
[00:12:15]               └-> job creation adds a new custom url
[00:12:15]                 └-> "before each" hook: global before each
[00:12:15]                 │ debg TestSubjects.exists(mlJobWizardAdditionalSettingsSection)
[00:12:15]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="mlJobWizardAdditionalSettingsSection"]') with timeout=2500
[00:12:15]                 │ debg TestSubjects.findAll(mlJobEditCustomUrlsList > *)
[00:12:15]                 │ debg Find.allByCssSelector('[data-test-subj="mlJobEditCustomUrlsList"] [data-test-subj="*"]') with timeout=10000
[00:12:25]                 │ debg TestSubjects.exists(mlJobNewCustomUrlFormModal)
[00:12:25]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="mlJobNewCustomUrlFormModal"]') with timeout=2500
[00:12:27]                 │ debg --- retry.tryForTime error: [data-test-subj="mlJobNewCustomUrlFormModal"] is not displayed
[00:12:28]                 │ debg TestSubjects.click(mlJobOpenCustomUrlFormButton)
[00:12:28]                 │ debg Find.clickByCssSelector('[data-test-subj="mlJobOpenCustomUrlFormButton"]') with timeout=10000
[00:12:28]                 │ debg Find.findByCssSelector('[data-test-subj="mlJobOpenCustomUrlFormButton"]') with timeout=10000
[00:12:28]                 │ debg TestSubjects.exists(mlJobNewCustomUrlFormModal)
[00:12:28]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="mlJobNewCustomUrlFormModal"]') with timeout=1000
[00:12:28]                 │ debg TestSubjects.setValue(mlJobCustomUrlLabelInput, check-kibana-dashboard)
[00:12:28]                 │ debg TestSubjects.click(mlJobCustomUrlLabelInput)
[00:12:28]                 │ debg Find.clickByCssSelector('[data-test-subj="mlJobCustomUrlLabelInput"]') with timeout=10000
[00:12:28]                 │ debg Find.findByCssSelector('[data-test-subj="mlJobCustomUrlLabelInput"]') with timeout=10000
[00:12:28]                 │ debg TestSubjects.getAttribute(mlJobCustomUrlLabelInput, value)
[00:12:28]                 │ debg TestSubjects.find(mlJobCustomUrlLabelInput)
[00:12:28]                 │ debg Find.findByCssSelector('[data-test-subj="mlJobCustomUrlLabelInput"]') with timeout=10000
[00:12:28]                 │ debg TestSubjects.click(mlJobAddCustomUrl)
[00:12:28]                 │ debg Find.clickByCssSelector('[data-test-subj="mlJobAddCustomUrl"]') with timeout=10000
[00:12:28]                 │ debg Find.findByCssSelector('[data-test-subj="mlJobAddCustomUrl"]') with timeout=10000
[00:12:28]                 │ debg TestSubjects.missingOrFail(mlJobNewCustomUrlFormModal)
[00:12:28]                 │ debg Find.waitForDeletedByCssSelector('[data-test-subj="mlJobNewCustomUrlFormModal"]') with timeout=10000
[00:12:29]                 │ debg TestSubjects.exists(mlJobEditCustomUrlItem_0)
[00:12:29]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="mlJobEditCustomUrlItem_0"]') with timeout=120000
[00:12:29]                 │ debg TestSubjects.getAttribute(mlJobEditCustomUrlLabelInput_0, value)
[00:12:29]                 │ debg TestSubjects.find(mlJobEditCustomUrlLabelInput_0)
[00:12:29]                 │ debg Find.findByCssSelector('[data-test-subj="mlJobEditCustomUrlLabelInput_0"]') with timeout=10000
[00:12:29]                 └- ✓ pass  (14.3s) "machine learning anomaly detection single metric job creation adds a new custom url"
[00:12:29]               └-> job creation assigns calendars
[00:12:29]                 └-> "before each" hook: global before each
[00:12:29]                 │ debg TestSubjects.exists(mlJobWizardAdditionalSettingsSection)
[00:12:29]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="mlJobWizardAdditionalSettingsSection"]') with timeout=2500
[00:12:29]                 │ debg comboBox.setCustom, comboBoxSelector: mlJobWizardComboBoxCalendars > comboBoxInput, value: wizard-test-calendar
[00:12:29]                 │ debg TestSubjects.find(mlJobWizardComboBoxCalendars > comboBoxInput)
[00:12:29]                 │ debg Find.findByCssSelector('[data-test-subj="mlJobWizardComboBoxCalendars"] [data-test-subj="comboBoxInput"]') with timeout=10000
[00:12:31]                 │ debg TestSubjects.exists(~comboBoxOptionsList)
[00:12:31]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj~="comboBoxOptionsList"]') with timeout=2500
[00:12:32]                 │ debg TestSubjects.exists(mlJobWizardAdditionalSettingsSection)
[00:12:32]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="mlJobWizardAdditionalSettingsSection"]') with timeout=2500
[00:12:32]                 │ debg comboBox.getComboBoxSelectedOptions, comboBoxSelector: mlJobWizardComboBoxCalendars > comboBoxInput
[00:12:32]                 │ debg TestSubjects.find(mlJobWizardComboBoxCalendars > comboBoxInput)
[00:12:32]                 │ debg Find.findByCssSelector('[data-test-subj="mlJobWizardComboBoxCalendars"] [data-test-subj="comboBoxInput"]') with timeout=10000
[00:12:32]                 └- ✓ pass  (2.6s) "machine learning anomaly detection single metric job creation assigns calendars"
[00:12:32]               └-> job creation opens the advanced section
[00:12:32]                 └-> "before each" hook: global before each
[00:12:32]                 │ debg TestSubjects.exists(mlJobWizardAdvancedSection)
[00:12:32]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="mlJobWizardAdvancedSection"]') with timeout=2500
[00:12:32]                 │ debg --- retry.tryForTime error: [data-test-subj="mlJobWizardAdvancedSection"] is not displayed
[00:12:32]                 │ debg --- retry.tryForTime failed again with the same message...
[00:12:33]                 │ debg --- retry.tryForTime failed again with the same message...
[00:12:33]                 │ debg --- retry.tryForTime failed again with the same message...
[00:12:34]                 │ debg --- retry.tryForTime failed again with the same message...
[00:12:34]                 │ debg TestSubjects.click(mlJobWizardToggleAdvancedSection)
[00:12:34]                 │ debg Find.clickByCssSelector('[data-test-subj="mlJobWizardToggleAdvancedSection"]') with timeout=10000
[00:12:34]                 │ debg Find.findByCssSelector('[data-test-subj="mlJobWizardToggleAdvancedSection"]') with timeout=10000
[00:12:34]                 │ debg TestSubjects.exists(mlJobWizardAdvancedSection)
[00:12:34]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="mlJobWizardAdvancedSection"]') with timeout=1000
[00:12:34]                 └- ✓ pass  (2.8s) "machine learning anomaly detection single metric job creation opens the advanced section"
[00:12:34]               └-> job creation displays the model plot switch
[00:12:34]                 └-> "before each" hook: global before each
[00:12:34]                 │ debg TestSubjects.exists(mlJobWizardAdvancedSection)
[00:12:34]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="mlJobWizardAdvancedSection"]') with timeout=2500
[00:12:34]                 │ debg TestSubjects.exists(mlJobWizardAdvancedSection > mlJobWizardSwitchModelPlot)
[00:12:34]                 │ debg Find.existsByCssSelector('[data-test-subj="mlJobWizardAdvancedSection"] [data-test-subj="mlJobWizardSwitchModelPlot"]') with timeout=120000
[00:12:34]                 └- ✓ pass  (47ms) "machine learning anomaly detection single metric job creation displays the model plot switch"
[00:12:34]               └-> job creation enables the dedicated index switch
[00:12:34]                 └-> "before each" hook: global before each
[00:12:34]                 │ debg TestSubjects.exists(mlJobWizardAdvancedSection)
[00:12:34]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="mlJobWizardAdvancedSection"]') with timeout=2500
[00:12:34]                 │ debg TestSubjects.exists(mlJobWizardAdvancedSection > mlJobWizardSwitchUseDedicatedIndex)
[00:12:34]                 │ debg Find.existsByCssSelector('[data-test-subj="mlJobWizardAdvancedSection"] [data-test-subj="mlJobWizardSwitchUseDedicatedIndex"]') with timeout=120000
[00:12:34]                 │ debg TestSubjects.exists(mlJobWizardAdvancedSection)
[00:12:34]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="mlJobWizardAdvancedSection"]') with timeout=2500
[00:12:34]                 │ debg TestSubjects.getAttribute(mlJobWizardSwitchUseDedicatedIndex, aria-checked)
[00:12:34]                 │ debg TestSubjects.find(mlJobWizardSwitchUseDedicatedIndex)
[00:12:34]                 │ debg Find.findByCssSelector('[data-test-subj="mlJobWizardSwitchUseDedicatedIndex"]') with timeout=10000
[00:12:35]                 │ debg TestSubjects.exists(mlJobWizardAdvancedSection)
[00:12:35]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="mlJobWizardAdvancedSection"]') with timeout=2500
[00:12:35]                 │ debg TestSubjects.clickWhenNotDisabled(mlJobWizardAdvancedSection > mlJobWizardSwitchUseDedicatedIndex)
[00:12:35]                 │ debg Find.clickByCssSelectorWhenNotDisabled('[data-test-subj="mlJobWizardAdvancedSection"] [data-test-subj="mlJobWizardSwitchUseDedicatedIndex"]') with timeout=10000
[00:12:35]                 │ debg Find.findByCssSelector('[data-test-subj="mlJobWizardAdvancedSection"] [data-test-subj="mlJobWizardSwitchUseDedicatedIndex"]') with timeout=10000
[00:12:35]                 │ debg TestSubjects.getAttribute(mlJobWizardSwitchUseDedicatedIndex, aria-checked)
[00:12:35]                 │ debg TestSubjects.find(mlJobWizardSwitchUseDedicatedIndex)
[00:12:35]                 │ debg Find.findByCssSelector('[data-test-subj="mlJobWizardSwitchUseDedicatedIndex"]') with timeout=10000
[00:12:35]                 │ debg TestSubjects.exists(mlJobWizardAdvancedSection)
[00:12:35]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="mlJobWizardAdvancedSection"]') with timeout=2500
[00:12:35]                 └- ✓ pass  (415ms) "machine learning anomaly detection single metric job creation enables the dedicated index switch"
[00:12:35]               └-> job creation inputs the model memory limit
[00:12:35]                 └-> "before each" hook: global before each
[00:12:35]                 │ debg TestSubjects.exists(mlJobWizardAdvancedSection)
[00:12:35]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="mlJobWizardAdvancedSection"]') with timeout=2500
[00:12:35]                 │ debg TestSubjects.exists(mlJobWizardAdvancedSection > mlJobWizardInputModelMemoryLimit)
[00:12:35]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="mlJobWizardAdvancedSection"] [data-test-subj="mlJobWizardInputModelMemoryLimit"]') with timeout=120000
[00:12:35]                 │ debg TestSubjects.exists(mlJobWizardAdvancedSection)
[00:12:35]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="mlJobWizardAdvancedSection"]') with timeout=2500
[00:12:35]                 │ debg TestSubjects.setValueWithChecks(mlJobWizardAdvancedSection > mlJobWizardInputModelMemoryLimit, 15mb)
[00:12:35]                 │ debg TestSubjects.click(mlJobWizardAdvancedSection > mlJobWizardInputModelMemoryLimit)
[00:12:35]                 │ debg Find.clickByCssSelector('[data-test-subj="mlJobWizardAdvancedSection"] [data-test-subj="mlJobWizardInputModelMemoryLimit"]') with timeout=10000
[00:12:35]                 │ debg Find.findByCssSelector('[data-test-subj="mlJobWizardAdvancedSection"] [data-test-subj="mlJobWizardInputModelMemoryLimit"]') with timeout=10000
[00:12:35]                 │ debg TestSubjects.exists(mlJobWizardAdvancedSection)
[00:12:35]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="mlJobWizardAdvancedSection"]') with timeout=2500
[00:12:35]                 │ debg TestSubjects.getAttribute(mlJobWizardAdvancedSection > mlJobWizardInputModelMemoryLimit, value)
[00:12:35]                 │ debg TestSubjects.find(mlJobWizardAdvancedSection > mlJobWizardInputModelMemoryLimit)
[00:12:35]                 │ debg Find.findByCssSelector('[data-test-subj="mlJobWizardAdvancedSection"] [data-test-subj="mlJobWizardInputModelMemoryLimit"]') with timeout=10000
[00:12:35]                 └- ✓ pass  (542ms) "machine learning anomaly detection single metric job creation inputs the model memory limit"
[00:12:35]               └-> job creation displays the validation step
[00:12:35]                 └-> "before each" hook: global before each
[00:12:35]                 │ debg TestSubjects.exists(mlJobWizardNavButtonNext)
[00:12:35]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="mlJobWizardNavButtonNext"]') with timeout=120000
[00:12:35]                 │ debg TestSubjects.clickWhenNotDisabled(mlJobWizardNavButtonNext)
[00:12:35]                 │ debg Find.clickByCssSelectorWhenNotDisabled('[data-test-subj="mlJobWizardNavButtonNext"]') with timeout=10000
[00:12:35]                 │ debg Find.findByCssSelector('[data-test-subj="mlJobWizardNavButtonNext"]') with timeout=10000
[00:12:36]                 │ debg TestSubjects.exists(mlJobWizardStepTitleValidation)
[00:12:36]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="mlJobWizardStepTitleValidation"]') with timeout=120000
[00:12:36]                 └- ✓ pass  (677ms) "machine learning anomaly detection single metric job creation displays the validation step"
[00:12:36]               └-> job creation displays the summary step
[00:12:36]                 └-> "before each" hook: global before each
[00:12:36]                 │ debg TestSubjects.exists(mlJobWizardNavButtonNext)
[00:12:36]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="mlJobWizardNavButtonNext"]') with timeout=120000
[00:12:36]                 │ debg TestSubjects.clickWhenNotDisabled(mlJobWizardNavButtonNext)
[00:12:36]                 │ debg Find.clickByCssSelectorWhenNotDisabled('[data-test-subj="mlJobWizardNavButtonNext"]') with timeout=10000
[00:12:36]                 │ debg Find.findByCssSelector('[data-test-subj="mlJobWizardNavButtonNext"]') with timeout=10000
[00:12:36]                 │ debg TestSubjects.exists(mlJobWizardStepTitleSummary)
[00:12:36]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="mlJobWizardStepTitleSummary"]') with timeout=120000
[00:12:37]                 └- ✓ pass  (536ms) "machine learning anomaly detection single metric job creation displays the summary step"
[00:12:37]               └-> job creation creates the job and finishes processing
[00:12:37]                 └-> "before each" hook: global before each
[00:12:37]                 │ debg TestSubjects.exists(mlJobWizardButtonCreateJob)
[00:12:37]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="mlJobWizardButtonCreateJob"]') with timeout=120000
[00:12:37]                 │ debg TestSubjects.clickWhenNotDisabled(mlJobWizardButtonCreateJob)
[00:12:37]                 │ debg Find.clickByCssSelectorWhenNotDisabled('[data-test-subj="mlJobWizardButtonCreateJob"]') with timeout=10000
[00:12:37]                 │ debg Find.findByCssSelector('[data-test-subj="mlJobWizardButtonCreateJob"]') with timeout=10000
[00:12:37]                 │ debg TestSubjects.exists(mlJobWizardButtonRunInRealTime)
[00:12:37]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="mlJobWizardButtonRunInRealTime"]') with timeout=120000
[00:12:37]                 │ info [o.e.c.m.MetaDataCreateIndexService] [kibana-ci-immutable-debian-tests-xl-1584715024230899445] [.ml-anomalies-custom-fq_single_1_1584717014370] creating index, cause [api], templates [.ml-anomalies-], shards [1]/[1], mappings [_doc]
[00:12:37]                 │ info [o.e.c.r.a.AllocationService] [kibana-ci-immutable-debian-tests-xl-1584715024230899445] updating number_of_replicas to [0] for indices [.ml-anomalies-custom-fq_single_1_1584717014370]
[00:12:37]                 │ info [o.e.c.m.MetaDataCreateIndexService] [kibana-ci-immutable-debian-tests-xl-1584715024230899445] [.ml-config] creating index, cause [auto(bulk api)], templates [.ml-config], shards [1]/[1], mappings [_doc]
[00:12:37]                 │ info [o.e.c.r.a.AllocationService] [kibana-ci-immutable-debian-tests-xl-1584715024230899445] updating number_of_replicas to [0] for indices [.ml-config]
[00:12:37]                 │ info [o.e.c.m.MetaDataCreateIndexService] [kibana-ci-immutable-debian-tests-xl-1584715024230899445] [.ml-notifications-000001] creating index, cause [auto(bulk api)], templates [.ml-notifications-000001], shards [1]/[1], mappings [_doc]
[00:12:37]                 │ info [o.e.c.r.a.AllocationService] [kibana-ci-immutable-debian-tests-xl-1584715024230899445] updating number_of_replicas to [0] for indices [.ml-notifications-000001]
[00:12:37]                 │ info [o.e.x.m.j.p.a.AutodetectProcessManager] [kibana-ci-immutable-debian-tests-xl-1584715024230899445] Opening job [fq_single_1_1584717014370]
[00:12:37]                 │ info [o.e.c.m.MetaDataCreateIndexService] [kibana-ci-immutable-debian-tests-xl-1584715024230899445] [.ml-state-000001] creating index, cause [api], templates [.ml-state], shards [1]/[1], mappings [_doc]
[00:12:37]                 │ info [o.e.c.r.a.AllocationService] [kibana-ci-immutable-debian-tests-xl-1584715024230899445] updating number_of_replicas to [0] for indices [.ml-state-000001]
[00:12:37]                 │ info [o.e.x.i.IndexLifecycleTransition] [kibana-ci-immutable-debian-tests-xl-1584715024230899445] moving index [.ml-state-000001] from [null] to [{"phase":"new","action":"complete","name":"complete"}] in policy [ml-size-based-ilm-policy]
[00:12:37]                 │ info [o.e.x.i.IndexLifecycleTransition] [kibana-ci-immutable-debian-tests-xl-1584715024230899445] moving index [.ml-state-000001] from [{"phase":"new","action":"complete","name":"complete"}] to [{"phase":"hot","action":"unfollow","name":"wait-for-indexing-complete"}] in policy [ml-size-based-ilm-policy]
[00:12:37]                 │ info [o.e.x.i.IndexLifecycleTransition] [kibana-ci-immutable-debian-tests-xl-1584715024230899445] moving index [.ml-state-000001] from [{"phase":"hot","action":"unfollow","name":"wait-for-indexing-complete"}] to [{"phase":"hot","action":"unfollow","name":"wait-for-follow-shard-tasks"}] in policy [ml-size-based-ilm-policy]
[00:12:37]                 │ info [o.e.x.m.j.p.a.AutodetectProcessManager] [kibana-ci-immutable-debian-tests-xl-1584715024230899445] [fq_single_1_1584717014370] Loading model snapshot [N/A], job latest_record_timestamp [N/A]
[00:12:38]                 │ info [o.e.x.m.p.l.CppLogMessageHandler] [kibana-ci-immutable-debian-tests-xl-1584715024230899445] [fq_single_1_1584717014370] [autodetect/34196] [CResourceMonitor.cc@71] Setting model memory limit to 15 MB
[00:12:38]                 │ info [o.e.x.m.j.p.a.AutodetectProcessManager] [kibana-ci-immutable-debian-tests-xl-1584715024230899445] Successfully set job state to [opened] for job [fq_single_1_1584717014370]
[00:12:38]                 │ info [o.e.x.m.d.DatafeedJob] [kibana-ci-immutable-debian-tests-xl-1584715024230899445] [fq_single_1_1584717014370] Datafeed started (from: 2016-02-07T00:00:00.000Z to: 2016-02-11T23:59:54.001Z) with frequency [540000ms]
[00:12:38]                 │ info [o.e.c.m.MetaDataMappingService] [kibana-ci-immutable-debian-tests-xl-1584715024230899445] [.ml-anomalies-custom-fq_single_1_1584717014370/LkNWPzAaRNGs-zqJ3JaJRw] update_mapping [_doc]
[00:12:38]                 │ info [o.e.c.m.MetaDataCreateIndexService] [kibana-ci-immutable-debian-tests-xl-1584715024230899445] [ilm-history-2-000001] creating index, cause [api], templates [ilm-history], shards [1]/[0], mappings [_doc]
[00:12:38]                 │ info [o.e.x.i.IndexLifecycleTransition] [kibana-ci-immutable-debian-tests-xl-1584715024230899445] moving index [ilm-history-2-000001] from [null] to [{"phase":"new","action":"complete","name":"complete"}] in policy [ilm-history-ilm-policy]
[00:12:38]                 │ info [o.e.x.i.IndexLifecycleTransition] [kibana-ci-immutable-debian-tests-xl-1584715024230899445] moving index [ilm-history-2-000001] from [{"phase":"new","action":"complete","name":"complete"}] to [{"phase":"hot","action":"unfollow","name":"wait-for-indexing-complete"}] in policy [ilm-history-ilm-policy]
[00:12:39]                 │ info [o.e.x.i.IndexLifecycleTransition] [kibana-ci-immutable-debian-tests-xl-1584715024230899445] moving index [ilm-history-2-000001] from [{"phase":"hot","action":"unfollow","name":"wait-for-indexing-complete"}] to [{"phase":"hot","action":"unfollow","name":"wait-for-follow-shard-tasks"}] in policy [ilm-history-ilm-policy]
[00:12:39]                 │ debg browser[INFO] http://localhost:6131/bundles/22.bundle.js 2:555731 "Response for job query:" Object
[00:12:39]                 │ debg browser[INFO] http://localhost:6131/bundles/22.bundle.js 2:565355 "checkSaveResponse(): save successful"
[00:12:39]                 │ debg --- retry.tryForTime error: [data-test-subj="mlJobWizardButtonRunInRealTime"] is not displayed
[00:12:39]                 │ info [o.e.x.m.d.DatafeedJob] [kibana-ci-immutable-debian-tests-xl-1584715024230899445] [fq_single_1_1584717014370] Lookback has finished
[00:12:39]                 │ info [o.e.x.m.d.DatafeedManager] [kibana-ci-immutable-debian-tests-xl-1584715024230899445] [no_realtime] attempt to stop datafeed [datafeed-fq_single_1_1584717014370] for job [fq_single_1_1584717014370]
[00:12:39]                 │ info [o.e.x.m.d.DatafeedManager] [kibana-ci-immutable-debian-tests-xl-1584715024230899445] [no_realtime] try lock [20s] to stop datafeed [datafeed-fq_single_1_1584717014370] for job [fq_single_1_1584717014370]...
[00:12:39]                 │ info [o.e.x.m.d.DatafeedManager] [kibana-ci-immutable-debian-tests-xl-1584715024230899445] [no_realtime] stopping datafeed [datafeed-fq_single_1_1584717014370] for job [fq_single_1_1584717014370], acquired [true]...
[00:12:39]                 │ info [o.e.x.m.d.DatafeedManager] [kibana-ci-immutable-debian-tests-xl-1584715024230899445] [no_realtime] datafeed [datafeed-fq_single_1_1584717014370] for job [fq_single_1_1584717014370] has been stopped
[00:12:40]                 │ info [o.e.x.m.j.p.a.AutodetectProcessManager] [kibana-ci-immutable-debian-tests-xl-1584715024230899445] Closing job [fq_single_1_1584717014370], because [close job (api)]
[00:12:40]                 │ info [o.e.x.m.p.l.CppLogMessageHandler] [kibana-ci-immutable-debian-tests-xl-1584715024230899445] [fq_single_1_1584717014370] [autodetect/34196] [CCmdSkeleton.cc@45] Handled 2399 records
[00:12:40]                 │ info [o.e.x.m.p.l.CppLogMessageHandler] [kibana-ci-immutable-debian-tests-xl-1584715024230899445] [fq_single_1_1584717014370] [autodetect/34196] [CAnomalyJob.cc@1499] Pruning all models
[00:12:40]                 │ info [o.e.x.m.p.AbstractNativeProcess] [kibana-ci-immutable-debian-tests-xl-1584715024230899445] [fq_single_1_1584717014370] State output finished
[00:12:40]                 │ info [o.e.c.m.MetaDataMappingService] [kibana-ci-immutable-debian-tests-xl-1584715024230899445] [.ml-anomalies-custom-fq_single_1_1584717014370/LkNWPzAaRNGs-zqJ3JaJRw] update_mapping [_doc]
[00:12:40]                 │ info [o.e.x.m.j.p.a.o.AutodetectResultProcessor] [kibana-ci-immutable-debian-tests-xl-1584715024230899445] [fq_single_1_1584717014370] 239 buckets parsed from autodetect output
[00:12:40]                 │ info [o.e.x.m.j.p.a.AutodetectCommunicator] [kibana-ci-immutable-debian-tests-xl-1584715024230899445] [fq_single_1_1584717014370] job closed
[00:12:41]                 └- ✓ pass  (4.1s) "machine learning anomaly detection single metric job creation creates the job and finishes processing"
[00:12:41]               └-> job creation displays the created job in the job list
[00:12:41]                 └-> "before each" hook: global before each
[00:12:41]                 │ debg navigating to ml url: http://localhost:6131/app/ml
[00:12:41]                 │ debg Navigate to: http://localhost:6131/app/ml
[00:12:41]                 │ debg ... sleep(700) start
[00:12:41]                 │ debg browser[INFO] http://localhost:6131/app/ml?_t=1584717776680 350 Refused to execute inline script because it violates the following Content Security Policy directive: "script-src 'unsafe-eval' 'self'". Either the 'unsafe-inline' keyword, a hash ('sha256-P5polb1UreUSOe5V/Pv7tc+yeZuJXiOi/3fqhGsU7BE='), or a nonce ('nonce-...') is required to enable inline execution.
[00:12:41]                 │
[00:12:41]                 │ debg browser[INFO] http://localhost:6131/bundles/app/ml/bootstrap.js 9:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:12:42]                 │ debg ... sleep(700) end
[00:12:42]                 │ debg returned from get, calling refresh
[00:12:42]                 │ debg browser[INFO] http://localhost:6131/app/ml?_t=1584717776680 350 Refused to execute inline script because it violates the following Content Security Policy directive: "script-src 'unsafe-eval' 'self'". Either the 'unsafe-inline' keyword, a hash ('sha256-P5polb1UreUSOe5V/Pv7tc+yeZuJXiOi/3fqhGsU7BE='), or a nonce ('nonce-...') is required to enable inline execution.
[00:12:42]                 │
[00:12:42]                 │ debg browser[INFO] http://localhost:6131/bundles/app/ml/bootstrap.js 9:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:12:42]                 │ debg currentUrl = http://localhost:6131/app/ml
[00:12:42]                 │          appUrl = http://localhost:6131/app/ml
[00:12:42]                 │ debg Find.findByCssSelector('[data-test-subj="kibanaChrome"]') with timeout=60000
[00:12:47]                 │ debg browser[INFO] http://localhost:6131/bundles/plugin/data/data.plugin.js 62:139970 "INFO: 2020-03-20T15:23:02Z
[00:12:47]                 │        Adding connection to http://localhost:6131/elasticsearch
[00:12:47]                 │
[00:12:47]                 │      "
[00:12:48]                 │ debg ... sleep(501) start
[00:12:48]                 │ debg ... sleep(501) end
[00:12:48]                 │ debg in navigateTo url = http://localhost:6131/app/ml#/overview?_g=(refreshInterval:(pause:!t,value:0))
[00:12:48]                 │ debg --- retry.try error: URL changed, waiting for it to settle
[00:12:49]                 │ debg ... sleep(501) start
[00:12:49]                 │ debg ... sleep(501) end
[00:12:49]                 │ debg in navigateTo url = http://localhost:6131/app/ml#/overview?_g=(refreshInterval:(pause:!t,value:0))
[00:12:49]                 │ debg TestSubjects.exists(statusPageContainer)
[00:12:49]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="statusPageContainer"]') with timeout=2500
[00:12:52]                 │ debg --- retry.tryForTime error: [data-test-subj="statusPageContainer"] is not displayed
[00:12:52]                 │ debg TestSubjects.click(~mlMainTab & ~anomalyDetection)
[00:12:52]                 │ debg Find.clickByCssSelector('[data-test-subj~="mlMainTab"][data-test-subj~="anomalyDetection"]') with timeout=10000
[00:12:52]                 │ debg Find.findByCssSelector('[data-test-subj~="mlMainTab"][data-test-subj~="anomalyDetection"]') with timeout=10000
[00:12:53]                 │ debg TestSubjects.exists(~mlMainTab & ~anomalyDetection & ~selected)
[00:12:53]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj~="mlMainTab"][data-test-subj~="anomalyDetection"][data-test-subj~="selected"]') with timeout=120000
[00:12:53]                 │ debg TestSubjects.exists(mlPageJobManagement)
[00:12:53]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="mlPageJobManagement"]') with timeout=120000
[00:12:53]                 │ debg TestSubjects.findAll(~mlSubTab)
[00:12:53]                 │ debg Find.allByCssSelector('[data-test-subj~="mlSubTab"]') with timeout=3
[00:12:53]                 │ debg TestSubjects.exists(~mlSubTab&~jobManagement)
[00:12:53]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj~="mlSubTab"][data-test-subj~="jobManagement"]') with timeout=1000
[00:12:53]                 │ debg TestSubjects.exists(~mlSubTab&~anomalyExplorer)
[00:12:53]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj~="mlSubTab"][data-test-subj~="anomalyExplorer"]') with timeout=1000
[00:12:53]                 │ debg TestSubjects.exists(~mlSubTab&~singleMetricViewer)
[00:12:53]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj~="mlSubTab"][data-test-subj~="singleMetricViewer"]') with timeout=1000
[00:12:53]                 │ debg TestSubjects.exists(~mlSubTab&~settings)
[00:12:53]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj~="mlSubTab"][data-test-subj~="settings"]') with timeout=1000
[00:12:53]                 │ debg TestSubjects.click(~mlSubTab & ~jobManagement)
[00:12:53]                 │ debg Find.clickByCssSelector('[data-test-subj~="mlSubTab"][data-test-subj~="jobManagement"]') with timeout=10000
[00:12:53]                 │ debg Find.findByCssSelector('[data-test-subj~="mlSubTab"][data-test-subj~="jobManagement"]') with timeout=10000
[00:12:53]                 │ debg TestSubjects.exists(~mlSubTab & ~jobManagement & ~selected)
[00:12:53]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj~="mlSubTab"][data-test-subj~="jobManagement"][data-test-subj~="selected"]') with timeout=120000
[00:12:53]                 │ debg TestSubjects.exists(mlPageJobManagement)
[00:12:53]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="mlPageJobManagement"]') with timeout=120000
[00:12:53]                 │ debg TestSubjects.exists(~mlJobListTable)
[00:12:53]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj~="mlJobListTable"]') with timeout=60000
[00:12:53]                 │ debg TestSubjects.exists(mlJobListTable loaded)
[00:12:53]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="mlJobListTable loaded"]') with timeout=30000
[00:12:53]                 │ debg TestSubjects.exists(~mlJobListTable)
[00:12:53]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj~="mlJobListTable"]') with timeout=60000
[00:12:53]                 │ debg TestSubjects.exists(mlJobListTable loaded)
[00:12:53]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="mlJobListTable loaded"]') with timeout=30000
[00:12:53]                 │ debg TestSubjects.find(mlJobListSearchBar)
[00:12:53]                 │ debg Find.findByCssSelector('[data-test-subj="mlJobListSearchBar"]') with timeout=10000
[00:12:54]                 │ debg TestSubjects.find(~mlJobListTable)
[00:12:54]                 │ debg Find.findByCssSelector('[data-test-subj~="mlJobListTable"]') with timeout=10000
[00:12:54]                 └- ✓ pass  (13.4s) "machine learning anomaly detection single metric job creation displays the created job in the job list"
[00:12:54]               └-> job creation displays details for the created job in the job list
[00:12:54]                 └-> "before each" hook: global before each
[00:12:54]                 │ debg TestSubjects.click(mlRefreshJobListButton)
[00:12:54]                 │ debg Find.clickByCssSelector('[data-test-subj="mlRefreshJobListButton"]') with timeout=10000
[00:12:54]                 │ debg Find.findByCssSelector('[data-test-subj="mlRefreshJobListButton"]') with timeout=10000
[00:12:54]                 │ debg TestSubjects.exists(~mlJobListTable)
[00:12:54]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj~="mlJobListTable"]') with timeout=60000
[00:12:54]                 │ debg TestSubjects.exists(mlJobListTable loaded)
[00:12:54]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="mlJobListTable loaded"]') with timeout=30000
[00:12:54]                 │ debg TestSubjects.find(~mlJobListTable)
[00:12:54]                 │ debg Find.findByCssSelector('[data-test-subj~="mlJobListTable"]') with timeout=10000
[00:12:54]                 │ debg TestSubjects.exists(~mlJobListTable > ~details-fq_single_1_1584717014370)
[00:12:54]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj~="mlJobListTable"] [data-test-subj~="details-fq_single_1_1584717014370"]') with timeout=2500
[00:12:57]                 │ debg --- retry.tryForTime error: [data-test-subj~="mlJobListTable"] [data-test-subj~="details-fq_single_1_1584717014370"] is not displayed
[00:12:57]                 │ debg TestSubjects.click(~mlJobListTable > ~row-fq_single_1_1584717014370 > mlJobListRowDetailsToggle)
[00:12:57]                 │ debg Find.clickByCssSelector('[data-test-subj~="mlJobListTable"] [data-test-subj~="row-fq_single_1_1584717014370"] [data-test-subj="mlJobListRowDetailsToggle"]') with timeout=10000
[00:12:57]                 │ debg Find.findByCssSelector('[data-test-subj~="mlJobListTable"] [data-test-subj~="row-fq_single_1_1584717014370"] [data-test-subj="mlJobListRowDetailsToggle"]') with timeout=10000
[00:12:57]                 │ debg TestSubjects.exists(~mlJobListTable > ~details-fq_single_1_1584717014370)
[00:12:57]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj~="mlJobListTable"] [data-test-subj~="details-fq_single_1_1584717014370"]') with timeout=1000
[00:12:58]                 │ debg TestSubjects.click(~mlJobListTable > ~details-fq_single_1_1584717014370 > mlJobListTab-counts)
[00:12:58]                 │ debg Find.clickByCssSelector('[data-test-subj~="mlJobListTable"] [data-test-subj~="details-fq_single_1_1584717014370"] [data-test-subj="mlJobListTab-counts"]') with timeout=10000
[00:12:58]                 │ debg Find.findByCssSelector('[data-test-subj~="mlJobListTable"] [data-test-subj~="details-fq_single_1_1584717014370"] [data-test-subj="mlJobListTab-counts"]') with timeout=10000
[00:12:58]                 │ debg TestSubjects.find(~mlJobListTable > ~details-fq_single_1_1584717014370 > mlJobDetails-counts > mlJobRowDetailsSection-counts)
[00:12:58]                 │ debg Find.findByCssSelector('[data-test-subj~="mlJobListTable"] [data-test-subj~="details-fq_single_1_1584717014370"] [data-test-subj="mlJobDetails-counts"] [data-test-subj="mlJobRowDetailsSection-counts"]') with timeout=10000
[00:12:58]                 │ debg TestSubjects.find(~mlJobListTable > ~details-fq_single_1_1584717014370 > mlJobDetails-counts > mlJobRowDetailsSection-modelSizeStats)
[00:12:58]                 │ debg Find.findByCssSelector('[data-test-subj~="mlJobListTable"] [data-test-subj~="details-fq_single_1_1584717014370"] [data-test-subj="mlJobDetails-counts"] [data-test-subj="mlJobRowDetailsSection-modelSizeStats"]') with timeout=10000
[00:12:58]                 │ debg TestSubjects.exists(~mlJobListTable > ~details-fq_single_1_1584717014370)
[00:12:58]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj~="mlJobListTable"] [data-test-subj~="details-fq_single_1_1584717014370"]') with timeout=2500
[00:12:58]                 │ debg TestSubjects.click(~mlJobListTable > ~row-fq_single_1_1584717014370 > mlJobListRowDetailsToggle)
[00:12:58]                 │ debg Find.clickByCssSelector('[data-test-subj~="mlJobListTable"] [data-test-subj~="row-fq_single_1_1584717014370"] [data-test-subj="mlJobListRowDetailsToggle"]') with timeout=10000
[00:12:58]                 │ debg Find.findByCssSelector('[data-test-subj~="mlJobListTable"] [data-test-subj~="row-fq_single_1_1584717014370"] [data-test-subj="mlJobListRowDetailsToggle"]') with timeout=10000
[00:12:58]                 │ debg TestSubjects.missingOrFail(~mlJobListTable > ~details-fq_single_1_1584717014370)
[00:12:58]                 │ debg Find.waitForDeletedByCssSelector('[data-test-subj~="mlJobListTable"] [data-test-subj~="details-fq_single_1_1584717014370"]') with timeout=1000
[00:12:58]                 └- ✓ pass  (4.3s) "machine learning anomaly detection single metric job creation displays details for the created job in the job list"
[00:12:58]               └-> job creation has detector results
[00:12:58]                 └-> "before each" hook: global before each
[00:12:58]                 │ debg Waiting up to 30000ms for results for detector 0 on job fq_single_1_1584717014370 to exist...
[00:12:58]                 └- ✓ pass  (15ms) "machine learning anomaly detection single metric job creation has detector results"
[00:12:58]               └-> job cloning clicks the clone action and loads the single metric wizard
[00:12:58]                 └-> "before each" hook: global before each
[00:12:58]                 │ debg TestSubjects.exists(mlActionButtonDeleteJob)
[00:12:58]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="mlActionButtonDeleteJob"]') with timeout=2500
[00:13:01]                 │ debg --- retry.tryForTime error: [data-test-subj="mlActionButtonDeleteJob"] is not displayed
[00:13:01]                 │ debg TestSubjects.click(~mlJobListTable > ~row-fq_single_1_1584717014370 > euiCollapsedItemActionsButton)
[00:13:01]                 │ debg Find.clickByCssSelector('[data-test-subj~="mlJobListTable"] [data-test-subj~="row-fq_single_1_1584717014370"] [data-test-subj="euiCollapsedItemActionsButton"]') with timeout=10000
[00:13:01]                 │ debg Find.findByCssSelector('[data-test-subj~="mlJobListTable"] [data-test-subj~="row-fq_single_1_1584717014370"] [data-test-subj="euiCollapsedItemActionsButton"]') with timeout=10000
[00:13:02]                 │ debg TestSubjects.exists(mlActionButtonDeleteJob)
[00:13:02]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="mlActionButtonDeleteJob"]') with timeout=5000
[00:13:02]                 │ debg TestSubjects.click(mlActionButtonCloneJob)
[00:13:02]                 │ debg Find.clickByCssSelector('[data-test-subj="mlActionButtonCloneJob"]') with timeout=10000
[00:13:02]                 │ debg Find.findByCssSelector('[data-test-subj="mlActionButtonCloneJob"]') with timeout=10000
[00:13:02]                 │ debg TestSubjects.exists(~mlPageJobWizard)
[00:13:02]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj~="mlPageJobWizard"]') with timeout=120000
[00:13:03]                 │ debg TestSubjects.exists(mlPageJobWizard single_metric)
[00:13:03]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="mlPageJobWizard single_metric"]') with timeout=120000
[00:13:03]                 └- ✓ pass  (4.2s) "machine learning anomaly detection single metric job cloning clicks the clone action and loads the single metric wizard"
[00:13:03]               └-> job cloning displays the time range step
[00:13:03]                 └-> "before each" hook: global before each
[00:13:03]                 │ debg TestSubjects.exists(mlJobWizardStepTitleTimeRange)
[00:13:03]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="mlJobWizardStepTitleTimeRange"]') with timeout=120000
[00:13:03]                 └- ✓ pass  (34ms) "machine learning anomaly detection single metric job cloning displays the time range step"
[00:13:03]               └-> job cloning sets the timerange
[00:13:03]                 └-> "before each" hook: global before each
[00:13:03]                 │ debg TestSubjects.clickWhenNotDisabled(mlButtonUseFullData)
[00:13:03]                 │ debg Find.clickByCssSelectorWhenNotDisabled('[data-test-subj="mlButtonUseFullData"]') with timeout=10000
[00:13:03]                 │ debg Find.findByCssSelector('[data-test-subj="mlButtonUseFullData"]') with timeout=10000
[00:13:03]                 │ debg TestSubjects.find(mlJobWizardDateRange)
[00:13:03]                 │ debg Find.findByCssSelector('[data-test-subj="mlJobWizardDateRange"]') with timeout=10000
[00:13:03]                 └- ✓ pass  (263ms) "machine learning anomaly detection single metric job cloning sets the timerange"
[00:13:03]               └-> job cloning displays the event rate chart
[00:13:03]                 └-> "before each" hook: global before each
[00:13:03]                 │ debg TestSubjects.exists(~mlEventRateChart)
[00:13:03]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj~="mlEventRateChart"]') with timeout=120000
[00:13:03]                 │ debg TestSubjects.exists(mlEventRateChart withData)
[00:13:03]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="mlEventRateChart withData"]') with timeout=120000
[00:13:03]                 └- ✓ pass  (91ms) "machine learning anomaly detection single metric job cloning displays the event rate chart"
[00:13:03]               └-> job cloning displays the pick fields step
[00:13:03]                 └-> "before each" hook: global before each
[00:13:03]                 │ debg TestSubjects.exists(mlJobWizardNavButtonNext)
[00:13:03]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="mlJobWizardNavButtonNext"]') with timeout=120000
[00:13:03]                 │ debg TestSubjects.clickWhenNotDisabled(mlJobWizardNavButtonNext)
[00:13:03]                 │ debg Find.clickByCssSelectorWhenNotDisabled('[data-test-subj="mlJobWizardNavButtonNext"]') with timeout=10000
[00:13:03]                 │ debg Find.findByCssSelector('[data-test-subj="mlJobWizardNavButtonNext"]') with timeout=10000
[00:13:03]                 │ debg TestSubjects.exists(mlJobWizardStepTitlePickFields)
[00:13:03]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="mlJobWizardStepTitlePickFields"]') with timeout=120000
[00:13:03]                 └- ✓ pass  (446ms) "machine learning anomaly detection single metric job cloning displays the pick fields step"
[00:13:03]               └-> job cloning pre-fills field and aggregation
[00:13:03]                 └-> "before each" hook: global before each
[00:13:03]                 │ debg TestSubjects.exists(mlJobWizardAggSelection > comboBoxInput)
[00:13:03]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="mlJobWizardAggSelection"] [data-test-subj="comboBoxInput"]') with timeout=120000
[00:13:03]                 │ debg comboBox.getComboBoxSelectedOptions, comboBoxSelector: mlJobWizardAggSelection > comboBoxInput
[00:13:03]                 │ debg TestSubjects.find(mlJobWizardAggSelection > comboBoxInput)
[00:13:03]                 │ debg Find.findByCssSelector('[data-test-subj="mlJobWizardAggSelection"] [data-test-subj="comboBoxInput"]') with timeout=10000
[00:13:03]                 └- ✓ pass  (51ms) "machine learning anomaly detection single metric job cloning pre-fills field and aggregation"
[00:13:03]               └-> job cloning pre-fills the bucket span
[00:13:03]                 └-> "before each" hook: global before each
[00:13:03]                 │ debg TestSubjects.exists(mlJobWizardInputBucketSpan)
[00:13:03]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="mlJobWizardInputBucketSpan"]') with timeout=120000
[00:13:03]                 │ debg TestSubjects.getAttribute(mlJobWizardInputBucketSpan, value)
[00:13:03]                 │ debg TestSubjects.find(mlJobWizardInputBucketSpan)
[00:13:03]                 │ debg Find.findByCssSelector('[data-test-subj="mlJobWizardInputBucketSpan"]') with timeout=10000
[00:13:04]                 └- ✓ pass  (50ms) "machine learning anomaly detection single metric job cloning pre-fills the bucket span"
[00:13:04]               └-> job cloning displays the job details step
[00:13:04]                 └-> "before each" hook: global before each
[00:13:04]                 │ debg TestSubjects.exists(mlJobWizardNavButtonNext)
[00:13:04]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="mlJobWizardNavButtonNext"]') with timeout=120000
[00:13:04]                 │ debg TestSubjects.clickWhenNotDisabled(mlJobWizardNavButtonNext)
[00:13:04]                 │ debg Find.clickByCssSelectorWhenNotDisabled('[data-test-subj="mlJobWizardNavButtonNext"]') with timeout=10000
[00:13:04]                 │ debg Find.findByCssSelector('[data-test-subj="mlJobWizardNavButtonNext"]') with timeout=10000
[00:13:04]                 │ERROR browser[SEVERE] http://localhost:6131/api/ml/validate/cardinality - Failed to load resource: the server responded with a status of 400 (Bad Request)
[00:13:04]                 │ERROR browser[SEVERE] http://localhost:6131/built_assets/dlls/vendors_3.bundle.dll.js 35:144256 Uncaught Error: 400
[00:13:04]                 │ debg TestSubjects.exists(mlJobWizardStepTitleJobDetails)
[00:13:04]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="mlJobWizardStepTitleJobDetails"]') with timeout=120000
[00:13:04]                 └- ✓ pass  (526ms) "machine learning anomaly detection single metric job cloning displays the job details step"
[00:13:04]               └-> job cloning does not pre-fill the job id
[00:13:04]                 └-> "before each" hook: global before each
[00:13:04]                 │ debg TestSubjects.exists(mlJobWizardInputJobId)
[00:13:04]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="mlJobWizardInputJobId"]') with timeout=120000
[00:13:04]                 │ debg TestSubjects.getAttribute(mlJobWizardInputJobId, value)
[00:13:04]                 │ debg TestSubjects.find(mlJobWizardInputJobId)
[00:13:04]                 │ debg Find.findByCssSelector('[data-test-subj="mlJobWizardInputJobId"]') with timeout=10000
[00:13:04]                 └- ✓ pass  (57ms) "machine learning anomaly detection single metric job cloning does not pre-fill the job id"
[00:13:04]               └-> job cloning inputs the clone job id
[00:13:04]                 └-> "before each" hook: global before each
[00:13:04]                 │ debg TestSubjects.setValueWithChecks(mlJobWizardInputJobId, fq_single_1_1584717014370_clone)
[00:13:04]                 │ debg TestSubjects.click(mlJobWizardInputJobId)
[00:13:04]                 │ debg Find.clickByCssSelector('[data-test-subj="mlJobWizardInputJobId"]') with timeout=10000
[00:13:04]                 │ debg Find.findByCssSelector('[data-test-subj="mlJobWizardInputJobId"]') with timeout=10000
[00:13:06]                 │ debg TestSubjects.getAttribute(mlJobWizardInputJobId, value)
[00:13:06]                 │ debg TestSubjects.find(mlJobWizardInputJobId)
[00:13:06]                 │ debg Find.findByCssSelector('[data-test-subj="mlJobWizardInputJobId"]') with timeout=10000
[00:13:06]                 └- ✓ pass  (1.7s) "machine learning anomaly detection single metric job cloning inputs the clone job id"
[00:13:06]               └-> job cloning pre-fills the job description
[00:13:06]                 └-> "before each" hook: global before each
[00:13:06]                 │ debg TestSubjects.exists(mlJobWizardInputJobDescription)
[00:13:06]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="mlJobWizardInputJobDescription"]') with timeout=120000
[00:13:06]                 │ debg TestSubjects.getVisibleText(mlJobWizardInputJobDescription)
[00:13:06]                 │ debg TestSubjects.find(mlJobWizardInputJobDescription)
[00:13:06]                 │ debg Find.findByCssSelector('[data-test-subj="mlJobWizardInputJobDescription"]') with timeout=10000
[00:13:06]                 └- ✓ pass  (60ms) "machine learning anomaly detection single metric job cloning pre-fills the job description"
[00:13:06]               └-> job cloning pre-fills job groups
[00:13:06]                 └-> "before each" hook: global before each
[00:13:06]                 │ debg TestSubjects.exists(mlJobWizardComboBoxJobGroups > comboBoxInput)
[00:13:06]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="mlJobWizardComboBoxJobGroups"] [data-test-subj="comboBoxInput"]') with timeout=120000
[00:13:06]                 │ debg comboBox.getComboBoxSelectedOptions, comboBoxSelector: mlJobWizardComboBoxJobGroups > comboBoxInput
[00:13:06]                 │ debg TestSubjects.find(mlJobWizardComboBoxJobGroups > comboBoxInput)
[00:13:06]                 │ debg Find.findByCssSelector('[data-test-subj="mlJobWizardComboBoxJobGroups"] [data-test-subj="comboBoxInput"]') with timeout=10000
[00:13:06]                 └- ✓ pass  (43ms) "machine learning anomaly detection single metric job cloning pre-fills job groups"
[00:13:06]               └-> job cloning inputs the clone job group
[00:13:06]                 └-> "before each" hook: global before each
[00:13:06]                 │ debg TestSubjects.exists(mlJobWizardComboBoxJobGroups > comboBoxInput)
[00:13:06]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="mlJobWizardComboBoxJobGroups"] [data-test-subj="comboBoxInput"]') with timeout=120000
[00:13:06]                 │ debg comboBox.setCustom, comboBoxSelector: mlJobWizardComboBoxJobGroups > comboBoxInput, value: clone
[00:13:06]                 │ debg TestSubjects.find(mlJobWizardComboBoxJobGroups > comboBoxInput)
[00:13:06]                 │ debg Find.findByCssSelector('[data-test-subj="mlJobWizardComboBoxJobGroups"] [data-test-subj="comboBoxInput"]') with timeout=10000
[00:13:08]                 │ debg TestSubjects.exists(~comboBoxOptionsList)
[00:13:08]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj~="comboBoxOptionsList"]') with timeout=2500
[00:13:08]                 │ debg comboBox.getComboBoxSelectedOptions, comboBoxSelector: mlJobWizardComboBoxJobGroups > comboBoxInput
[00:13:08]                 │ debg TestSubjects.find(mlJobWizardComboBoxJobGroups > comboBoxInput)
[00:13:08]                 │ debg Find.findByCssSelector('[data-test-subj="mlJobWizardComboBoxJobGroups"] [data-test-subj="comboBoxInput"]') with timeout=10000
[00:13:08]                 │ debg comboBox.getComboBoxSelectedOptions, comboBoxSelector: mlJobWizardComboBoxJobGroups > comboBoxInput
[00:13:08]                 │ debg TestSubjects.find(mlJobWizardComboBoxJobGroups > comboBoxInput)
[00:13:08]                 │ debg Find.findByCssSelector('[data-test-subj="mlJobWizardComboBoxJobGroups"] [data-test-subj="comboBoxInput"]') with timeout=10000
[00:13:09]                 └- ✓ pass  (2.6s) "machine learning anomaly detection single metric job cloning inputs the clone job group"
[00:13:09]               └-> job cloning opens the additional settings section
[00:13:09]                 └-> "before each" hook: global before each
[00:13:09]                 │ debg TestSubjects.exists(mlJobWizardAdditionalSettingsSection)
[00:13:09]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="mlJobWizardAdditionalSettingsSection"]') with timeout=2500
[00:13:09]                 │ debg --- retry.tryForTime error: [data-test-subj="mlJobWizardAdditionalSettingsSection"] is not displayed
[00:13:09]                 │ debg --- retry.tryForTime failed again with the same message...
[00:13:10]                 │ debg --- retry.tryForTime failed again with the same message...
[00:13:10]                 │ debg --- retry.tryForTime failed again with the same message...
[00:13:11]                 │ debg --- retry.tryForTime failed again with the same message...
[00:13:11]                 │ debg TestSubjects.click(mlJobWizardToggleAdditionalSettingsSection)
[00:13:11]                 │ debg Find.clickByCssSelector('[data-test-subj="mlJobWizardToggleAdditionalSettingsSection"]') with timeout=10000
[00:13:11]                 │ debg Find.findByCssSelector('[data-test-subj="mlJobWizardToggleAdditionalSettingsSection"]') with timeout=10000
[00:13:11]                 │ debg TestSubjects.exists(mlJobWizardAdditionalSettingsSection)
[00:13:11]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="mlJobWizardAdditionalSettingsSection"]') with timeout=1000
[00:13:11]                 └- ✓ pass  (2.7s) "machine learning anomaly detection single metric job cloning opens the additional settings section"
[00:13:11]               └-> job cloning persists custom urls
[00:13:11]                 └-> "before each" hook: global before each
[00:13:11]                 │ debg TestSubjects.exists(mlJobEditCustomUrlItem_0)
[00:13:11]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="mlJobEditCustomUrlItem_0"]') with timeout=120000
[00:13:11]                 │ debg --- retry.tryForTime error: [data-test-subj="mlJobEditCustomUrlItem_0"] is not displayed
[00:13:12]                 │ debg TestSubjects.getAttribute(mlJobEditCustomUrlLabelInput_0, value)
[00:13:12]                 │ debg TestSubjects.find(mlJobEditCustomUrlLabelInput_0)
[00:13:12]                 │ debg Find.findByCssSelector('[data-test-subj="mlJobEditCustomUrlLabelInput_0"]') with timeout=10000
[00:13:12]                 └- ✓ pass  (591ms) "machine learning anomaly detection single metric job cloning persists custom urls"
[00:13:12]               └-> job cloning persists assigned calendars
[00:13:12]                 └-> "before each" hook: global before each
[00:13:12]                 │ debg TestSubjects.exists(mlJobWizardAdditionalSettingsSection)
[00:13:12]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="mlJobWizardAdditionalSettingsSection"]') with timeout=2500
[00:13:12]                 │ debg comboBox.getComboBoxSelectedOptions, comboBoxSelector: mlJobWizardComboBoxCalendars > comboBoxInput
[00:13:12]                 │ debg TestSubjects.find(mlJobWizardComboBoxCalendars > comboBoxInput)
[00:13:12]                 │ debg Find.findByCssSelector('[data-test-subj="mlJobWizardComboBoxCalendars"] [data-test-subj="comboBoxInput"]') with timeout=10000
[00:13:12]                 └- ✓ pass  (39ms) "machine learning anomaly detection single metric job cloning persists assigned calendars"
[00:13:12]               └-> job cloning opens the advanced section
[00:13:12]                 └-> "before each" hook: global before each
[00:13:12]                 │ debg TestSubjects.exists(mlJobWizardAdvancedSection)
[00:13:12]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="mlJobWizardAdvancedSection"]') with timeout=2500
[00:13:12]                 │ debg --- retry.tryForTime error: [data-test-subj="mlJobWizardAdvancedSection"] is not displayed
[00:13:12]                 │ debg --- retry.tryForTime failed again with the same message...
[00:13:13]                 │ debg --- retry.tryForTime failed again with the same message...
[00:13:13]                 │ debg --- retry.tryForTime failed again with the same message...
[00:13:14]                 │ debg --- retry.tryForTime failed again with the same message...
[00:13:15]                 │ debg TestSubjects.click(mlJobWizardToggleAdvancedSection)
[00:13:15]                 │ debg Find.clickByCssSelector('[data-test-subj="mlJobWizardToggleAdvancedSection"]') with timeout=10000
[00:13:15]                 │ debg Find.findByCssSelector('[data-test-subj="mlJobWizardToggleAdvancedSection"]') with timeout=10000
[00:13:15]                 │ debg TestSubjects.exists(mlJobWizardAdvancedSection)
[00:13:15]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="mlJobWizardAdvancedSection"]') with timeout=1000
[00:13:15]                 └- ✓ pass  (2.7s) "machine learning anomaly detection single metric job cloning opens the advanced section"
[00:13:15]               └-> job cloning pre-fills the model plot switch
[00:13:15]                 └-> "before each" hook: global before each
[00:13:15]                 │ debg TestSubjects.exists(mlJobWizardAdvancedSection)
[00:13:15]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="mlJobWizardAdvancedSection"]') with timeout=2500
[00:13:15]                 │ debg TestSubjects.exists(mlJobWizardAdvancedSection > mlJobWizardSwitchModelPlot)
[00:13:15]                 │ debg Find.existsByCssSelector('[data-test-subj="mlJobWizardAdvancedSection"] [data-test-subj="mlJobWizardSwitchModelPlot"]') with timeout=120000
[00:13:15]                 │ debg TestSubjects.getAttribute(mlJobWizardSwitchModelPlot, aria-checked)
[00:13:15]                 │ debg TestSubjects.find(mlJobWizardSwitchModelPlot)
[00:13:15]                 │ debg Find.findByCssSelector('[data-test-subj="mlJobWizardSwitchModelPlot"]') with timeout=10000
[00:13:15]                 │ debg TestSubjects.exists(mlJobWizardAdvancedSection)
[00:13:15]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="mlJobWizardAdvancedSection"]') with timeout=2500
[00:13:15]                 └- ✓ pass  (95ms) "machine learning anomaly detection single metric job cloning pre-fills the model plot switch"
[00:13:15]               └-> job cloning pre-fills the dedicated index switch
[00:13:15]                 └-> "before each" hook: global before each
[00:13:15]                 │ debg TestSubjects.exists(mlJobWizardAdvancedSection)
[00:13:15]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="mlJobWizardAdvancedSection"]') with timeout=2500
[00:13:15]                 │ debg TestSubjects.exists(mlJobWizardAdvancedSection > mlJobWizardSwitchUseDedicatedIndex)
[00:13:15]                 │ debg Find.existsByCssSelector('[data-test-subj="mlJobWizardAdvancedSection"] [data-test-subj="mlJobWizardSwitchUseDedicatedIndex"]') with timeout=120000
[00:13:15]                 │ debg TestSubjects.getAttribute(mlJobWizardSwitchUseDedicatedIndex, aria-checked)
[00:13:15]                 │ debg TestSubjects.find(mlJobWizardSwitchUseDedicatedIndex)
[00:13:15]                 │ debg Find.findByCssSelector('[data-test-subj="mlJobWizardSwitchUseDedicatedIndex"]') with timeout=10000
[00:13:15]                 │ debg TestSubjects.exists(mlJobWizardAdvancedSection)
[00:13:15]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="mlJobWizardAdvancedSection"]') with timeout=2500
[00:13:15]                 └- ✓ pass  (94ms) "machine learning anomaly detection single metric job cloning pre-fills the dedicated index switch"
[00:13:15]               └-> job cloning pre-fills the model memory limit
[00:13:15]                 └-> "before each" hook: global before each
[00:13:15]                 │ debg TestSubjects.exists(mlJobWizardAdvancedSection)
[00:13:15]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="mlJobWizardAdvancedSection"]') with timeout=2500
[00:13:15]                 │ debg TestSubjects.exists(mlJobWizardAdvancedSection > mlJobWizardInputModelMemoryLimit)
[00:13:15]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="mlJobWizardAdvancedSection"] [data-test-subj="mlJobWizardInputModelMemoryLimit"]') with timeout=120000
[00:13:15]                 │ debg TestSubjects.exists(mlJobWizardAdvancedSection)
[00:13:15]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="mlJobWizardAdvancedSection"]') with timeout=2500
[00:13:15]                 │ debg TestSubjects.getAttribute(mlJobWizardAdvancedSection > mlJobWizardInputModelMemoryLimit, value)
[00:13:15]                 │ debg TestSubjects.find(mlJobWizardAdvancedSection > mlJobWizardInputModelMemoryLimit)
[00:13:15]                 │ debg Find.findByCssSelector('[data-test-subj="mlJobWizardAdvancedSection"] [data-test-subj="mlJobWizardInputModelMemoryLimit"]') with timeout=10000
[00:13:15]                 └- ✓ pass  (91ms) "machine learning anomaly detection single metric job cloning pre-fills the model memory limit"
[00:13:15]               └-> job cloning displays the validation step
[00:13:15]                 └-> "before each" hook: global before each
[00:13:15]                 │ debg TestSubjects.exists(mlJobWizardNavButtonNext)
[00:13:15]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="mlJobWizardNavButtonNext"]') with timeout=120000
[00:13:15]                 │ debg TestSubjects.clickWhenNotDisabled(mlJobWizardNavButtonNext)
[00:13:15]                 │ debg Find.clickByCssSelectorWhenNotDisabled('[data-test-subj="mlJobWizardNavButtonNext"]') with timeout=10000
[00:13:15]                 │ debg Find.findByCssSelector('[data-test-subj="mlJobWizardNavButtonNext"]') with timeout=10000
[00:13:15]                 │ debg TestSubjects.exists(mlJobWizardStepTitleValidation)
[00:13:15]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="mlJobWizardStepTitleValidation"]') with timeout=120000
[00:13:15]                 └- ✓ pass  (244ms) "machine learning anomaly detection single metric job cloning displays the validation step"
[00:13:15]               └-> job cloning displays the summary step
[00:13:15]                 └-> "before each" hook: global before each
[00:13:15]                 │ debg TestSubjects.exists(mlJobWizardNavButtonNext)
[00:13:15]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="mlJobWizardNavButtonNext"]') with timeout=120000
[00:13:15]                 │ debg TestSubjects.clickWhenNotDisabled(mlJobWizardNavButtonNext)
[00:13:15]                 │ debg Find.clickByCssSelectorWhenNotDisabled('[data-test-subj="mlJobWizardNavButtonNext"]') with timeout=10000
[00:13:15]                 │ debg Find.findByCssSelector('[data-test-subj="mlJobWizardNavButtonNext"]') with timeout=10000
[00:13:15]                 │ debg TestSubjects.exists(mlJobWizardStepTitleSummary)
[00:13:15]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="mlJobWizardStepTitleSummary"]') with timeout=120000
[00:13:15]                 └- ✓ pass  (315ms) "machine learning anomaly detection single metric job cloning displays the summary step"
[00:13:15]               └-> job cloning creates the job and finishes processing
[00:13:15]                 └-> "before each" hook: global before each
[00:13:15]                 │ debg TestSubjects.exists(mlJobWizardButtonCreateJob)
[00:13:15]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="mlJobWizardButtonCreateJob"]') with timeout=120000
[00:13:16]                 │ debg TestSubjects.clickWhenNotDisabled(mlJobWizardButtonCreateJob)
[00:13:16]                 │ debg Find.clickByCssSelectorWhenNotDisabled('[data-test-subj="mlJobWizardButtonCreateJob"]') with timeout=10000
[00:13:16]                 │ debg Find.findByCssSelector('[data-test-subj="mlJobWizardButtonCreateJob"]') with timeout=10000
[00:13:16]                 │ debg TestSubjects.exists(mlJobWizardButtonRunInRealTime)
[00:13:16]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="mlJobWizardButtonRunInRealTime"]') with timeout=120000
[00:13:16]                 │ info [o.e.c.m.MetaDataCreateIndexService] [kibana-ci-immutable-debian-tests-xl-1584715024230899445] [.ml-anomalies-custom-fq_single_1_1584717014370_clone] creating index, cause [api], templates [.ml-anomalies-], shards [1]/[1], mappings [_doc]
[00:13:16]                 │ info [o.e.c.r.a.AllocationService] [kibana-ci-immutable-debian-tests-xl-1584715024230899445] updating number_of_replicas to [0] for indices [.ml-anomalies-custom-fq_single_1_1584717014370_clone]
[00:13:18]                 │ debg browser[INFO] http://localhost:6131/bundles/22.bundle.js 2:555731 "Response for job query:" Object
[00:13:18]                 │ debg browser[INFO] http://localhost:6131/bundles/22.bundle.js 2:565355 "checkSaveResponse(): save successful"
[00:13:18]                 │ERROR browser[SEVERE] http://localhost:6131/api/ml/datafeeds/datafeed-fq_single_1_1584717014370_clone - Failed to load resource: the server responded with a status of 400 (Bad Request)
[00:13:18]                 │ debg --- retry.tryForTime error: [data-test-subj="mlJobWizardButtonRunInRealTime"] is not displayed
[00:13:21]                 │ debg --- retry.tryForTime failed again with the same message...
[00:13:24]                 │ debg --- retry.tryForTime failed again with the same message...
[00:13:27]                 │ debg --- retry.tryForTime failed again with the same message...
[00:13:30]                 │ debg --- retry.tryForTime failed again with the same message...
[00:13:33]                 │ debg --- retry.tryForTime failed again with the same message...
[00:13:36]                 │ debg --- retry.tryForTime failed again with the same message...
[00:13:39]                 │ debg --- retry.tryForTime failed again with the same message...
[00:13:42]                 │ debg --- retry.tryForTime failed again with the same message...
[00:13:45]                 │ debg --- retry.tryForTime failed again with the same message...
[00:13:49]                 │ debg --- retry.tryForTime failed again with the same message...
[00:13:52]                 │ debg --- retry.tryForTime failed again with the same message...
[00:13:55]                 │ debg --- retry.tryForTime failed again with the same message...
[00:13:58]                 │ debg --- retry.tryForTime failed again with the same message...
[00:14:01]                 │ debg --- retry.tryForTime failed again with the same message...
[00:14:04]                 │ debg --- retry.tryForTime failed again with the same message...
[00:14:07]                 │ debg --- retry.tryForTime failed again with the same message...
[00:14:10]                 │ debg --- retry.tryForTime failed again with the same message...
[00:14:13]                 │ debg --- retry.tryForTime failed again with the same message...
[00:14:16]                 │ debg --- retry.tryForTime failed again with the same message...
[00:14:19]                 │ debg --- retry.tryForTime failed again with the same message...
[00:14:22]                 │ debg --- retry.tryForTime failed again with the same message...
[00:14:25]                 │ debg --- retry.tryForTime failed again with the same message...
[00:14:28]                 │ debg --- retry.tryForTime failed again with the same message...
[00:14:31]                 │ debg --- retry.tryForTime failed again with the same message...
[00:14:34]                 │ debg --- retry.tryForTime failed again with the same message...
[00:14:37]                 │ debg --- retry.tryForTime failed again with the same message...
[00:14:40]                 │ debg --- retry.tryForTime failed again with the same message...
[00:14:43]                 │ debg --- retry.tryForTime failed again with the same message...
[00:14:46]                 │ debg --- retry.tryForTime failed again with the same message...
[00:14:49]                 │ debg --- retry.tryForTime failed again with the same message...
[00:14:52]                 │ debg --- retry.tryForTime failed again with the same message...
[00:14:55]                 │ debg --- retry.tryForTime failed again with the same message...
[00:14:58]                 │ debg --- retry.tryForTime failed again with the same message...
[00:15:01]                 │ debg --- retry.tryForTime failed again with the same message...
[00:15:04]                 │ debg --- retry.tryForTime failed again with the same message...
[00:15:07]                 │ debg --- retry.tryForTime failed again with the same message...
[00:15:11]                 │ debg --- retry.tryForTime failed again with the same message...
[00:15:14]                 │ debg --- retry.tryForTime failed again with the same message...
[00:15:17]                 │ debg --- retry.tryForTime failed again with the same message...
[00:15:17]                 │ info Taking screenshot "/dev/shm/workspace/kibana/x-pack/test/functional/screenshots/failure/machine learning anomaly detection single metric job cloning creates the job and finishes processing.png"
[00:15:17]                 │ info Current URL is: http://localhost:6131/app/ml#/jobs/new_job/single_metric?index=afcb3f90-b51e-11e9-b428-adf46a495381&_g=()
[00:15:17]                 │ info Saving page source to: /dev/shm/workspace/kibana/x-pack/test/functional/failure_debug/html/machine learning anomaly detection single metric job cloning creates the job and finishes processing.html
[00:15:17]                 └- ✖ fail: "machine learning anomaly detection single metric job cloning creates the job and finishes processing"
[00:15:17]                 │

Stack Trace

Error: expected testSubject(mlJobWizardButtonRunInRealTime) to exist
    at TestSubjects.existOrFail (/dev/shm/workspace/kibana/test/functional/services/test_subjects.ts:60:15)

Kibana Pipeline / kibana-xpack-agent / Chrome X-Pack UI Functional Tests.x-pack/test/functional/apps/transform/creation_index_pattern·ts.transform creation_index_pattern batch transform with terms+date_histogram groups and avg agg adds the aggregation entries

Link to Jenkins

Standard Out

Failed Tests Reporter:
  - Test has not failed recently on tracked branches

[00:00:00]       │
[00:00:00]         └-: transform
[00:00:00]           └-> "before all" hook
[00:00:00]           └-> "before all" hook
[00:00:00]             │ debg creating role transform_source
[00:00:00]             │ info [o.e.x.s.a.r.TransportPutRoleAction] [kibana-ci-immutable-debian-tests-xl-1584715024230899445] added role [transform_source]
[00:00:00]             │ debg created role transform_source
[00:00:00]             │ debg creating role transform_dest
[00:00:00]             │ info [o.e.x.s.a.r.TransportPutRoleAction] [kibana-ci-immutable-debian-tests-xl-1584715024230899445] added role [transform_dest]
[00:00:00]             │ debg created role transform_dest
[00:00:00]             │ debg creating role transform_dest_readonly
[00:00:00]             │ info [o.e.x.s.a.r.TransportPutRoleAction] [kibana-ci-immutable-debian-tests-xl-1584715024230899445] added role [transform_dest_readonly]
[00:00:00]             │ debg created role transform_dest_readonly
[00:00:00]             │ debg creating role transform_ui_extras
[00:00:00]             │ info [o.e.x.s.a.r.TransportPutRoleAction] [kibana-ci-immutable-debian-tests-xl-1584715024230899445] added role [transform_ui_extras]
[00:00:00]             │ debg created role transform_ui_extras
[00:00:00]             │ debg creating user transform_poweruser
[00:00:00]             │ info [o.e.x.s.a.u.TransportPutUserAction] [kibana-ci-immutable-debian-tests-xl-1584715024230899445] added user [transform_poweruser]
[00:00:00]             │ debg created user transform_poweruser
[00:00:00]             │ debg creating user transform_viewer
[00:00:00]             │ info [o.e.x.s.a.u.TransportPutUserAction] [kibana-ci-immutable-debian-tests-xl-1584715024230899445] added user [transform_viewer]
[00:00:00]             │ debg created user transform_viewer
[00:00:00]           └-: creation_index_pattern
[00:00:00]             └-> "before all" hook
[00:00:00]             └-> "before all" hook
[00:00:00]               │ info [ml/ecommerce] Loading "mappings.json"
[00:00:00]               │ info [ml/ecommerce] Loading "data.json.gz"
[00:00:00]               │ info [o.e.c.m.MetaDataCreateIndexService] [kibana-ci-immutable-debian-tests-xl-1584715024230899445] [ecommerce] creating index, cause [api], templates [], shards [1]/[0], mappings [_doc]
[00:00:00]               │ info [o.e.c.r.a.AllocationService] [kibana-ci-immutable-debian-tests-xl-1584715024230899445] Cluster health status changed from [YELLOW] to [GREEN] (reason: [shards started [[ecommerce][0]]]).
[00:00:00]               │ info [ml/ecommerce] Created index "ecommerce"
[00:00:00]               │ debg [ml/ecommerce] "ecommerce" settings {"index":{"number_of_replicas":"0","number_of_shards":"1"}}
[00:00:01]               │ info [o.e.c.m.MetaDataDeleteIndexService] [kibana-ci-immutable-debian-tests-xl-1584715024230899445] [.kibana_1/-28oAomuRMG2J_vVUaONHQ] deleting index
[00:00:01]               │ info [ml/ecommerce] Deleted existing index [".kibana_1"]
[00:00:01]               │ info [o.e.c.m.MetaDataCreateIndexService] [kibana-ci-immutable-debian-tests-xl-1584715024230899445] [.kibana_1] creating index, cause [api], templates [], shards [1]/[0], mappings [_doc]
[00:00:01]               │ info [o.e.c.r.a.AllocationService] [kibana-ci-immutable-debian-tests-xl-1584715024230899445] Cluster health status changed from [YELLOW] to [GREEN] (reason: [shards started [[.kibana_1][0]]]).
[00:00:01]               │ info [ml/ecommerce] Created index ".kibana_1"
[00:00:01]               │ debg [ml/ecommerce] ".kibana_1" settings {"index":{"auto_expand_replicas":"0-1","number_of_replicas":"0","number_of_shards":"1"}}
[00:00:04]               │ info [ml/ecommerce] Indexed 4675 docs into "ecommerce"
[00:00:04]               │ info [ml/ecommerce] Indexed 4 docs into ".kibana_1"
[00:00:04]               │ info [o.e.c.m.MetaDataMappingService] [kibana-ci-immutable-debian-tests-xl-1584715024230899445] [.kibana_1/2vrtC2dWTQSrjfxiolJngA] update_mapping [_doc]
[00:00:04]               │ debg Migrating saved objects
[00:00:05]               │ proc [kibana]   log   [15:16:32.104] [info][savedobjects-service] Creating index .kibana_2.
[00:00:05]               │ info [o.e.c.m.MetaDataCreateIndexService] [kibana-ci-immutable-debian-tests-xl-1584715024230899445] [.kibana_2] creating index, cause [api], templates [], shards [1]/[1], mappings [_doc]
[00:00:05]               │ info [o.e.c.r.a.AllocationService] [kibana-ci-immutable-debian-tests-xl-1584715024230899445] updating number_of_replicas to [0] for indices [.kibana_2]
[00:00:05]               │ info [o.e.c.r.a.AllocationService] [kibana-ci-immutable-debian-tests-xl-1584715024230899445] Cluster health status changed from [YELLOW] to [GREEN] (reason: [shards started [[.kibana_2][0]]]).
[00:00:05]               │ proc [kibana]   log   [15:16:32.216] [info][savedobjects-service] Migrating .kibana_1 saved objects to .kibana_2
[00:00:05]               │ info [o.e.c.m.MetaDataMappingService] [kibana-ci-immutable-debian-tests-xl-1584715024230899445] [.kibana_2/gbBs96UgSbaZnMqP1FEF4w] update_mapping [_doc]
[00:00:05]               │ info [o.e.c.m.MetaDataMappingService] [kibana-ci-immutable-debian-tests-xl-1584715024230899445] [.kibana_2/gbBs96UgSbaZnMqP1FEF4w] update_mapping [_doc]
[00:00:05]               │ info [o.e.c.m.MetaDataMappingService] [kibana-ci-immutable-debian-tests-xl-1584715024230899445] [.kibana_2/gbBs96UgSbaZnMqP1FEF4w] update_mapping [_doc]
[00:00:05]               │ proc [kibana]   log   [15:16:32.433] [info][savedobjects-service] Pointing alias .kibana to .kibana_2.
[00:00:05]               │ proc [kibana]   log   [15:16:32.527] [info][savedobjects-service] Finished in 427ms.
[00:00:05]               │ debg SecurityPage.forceLogout
[00:00:05]               │ debg Find.existsByDisplayedByCssSelector('.login-form') with timeout=100
[00:00:05]               │ debg --- retry.tryForTime error: .login-form is not displayed
[00:00:06]               │ debg Redirecting to /logout to force the logout
[00:00:06]               │ debg Waiting on the login form to appear
[00:00:06]               │ debg Waiting up to 100000ms for login form...
[00:00:06]               │ debg Find.existsByDisplayedByCssSelector('.login-form') with timeout=2500
[00:00:06]               │ debg browser[INFO] http://localhost:6191/logout?_t=1584717393208 350 Refused to execute inline script because it violates the following Content Security Policy directive: "script-src 'unsafe-eval' 'self'". Either the 'unsafe-inline' keyword, a hash ('sha256-P5polb1UreUSOe5V/Pv7tc+yeZuJXiOi/3fqhGsU7BE='), or a nonce ('nonce-...') is required to enable inline execution.
[00:00:06]               │
[00:00:06]               │ debg browser[INFO] http://localhost:6191/bundles/app/logout/bootstrap.js 9:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:00:09]               │ debg --- retry.tryForTime error: .login-form is not displayed
[00:00:10]               │ debg Find.existsByDisplayedByCssSelector('.login-form') with timeout=2500
[00:00:15]               │ debg browser[INFO] http://localhost:6191/bundles/plugin/data/data.plugin.js 62:139970 "INFO: 2020-03-20T15:16:38Z
[00:00:15]               │        Adding connection to http://localhost:6191/elasticsearch
[00:00:15]               │
[00:00:15]               │      "
[00:00:15]               │ debg browser[INFO] http://localhost:6191/login?next=%2F 350 Refused to execute inline script because it violates the following Content Security Policy directive: "script-src 'unsafe-eval' 'self'". Either the 'unsafe-inline' keyword, a hash ('sha256-P5polb1UreUSOe5V/Pv7tc+yeZuJXiOi/3fqhGsU7BE='), or a nonce ('nonce-...') is required to enable inline execution.
[00:00:15]               │
[00:00:15]               │ debg browser[INFO] http://localhost:6191/bundles/app/login/bootstrap.js 9:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:00:15]               │ debg --- retry.tryForTime error: .login-form is not displayed
[00:00:15]               │ debg browser[INFO] http://localhost:6191/bundles/plugin/data/data.plugin.js 62:139970 "INFO: 2020-03-20T15:16:42Z
[00:00:15]               │        Adding connection to http://localhost:6191/elasticsearch
[00:00:15]               │
[00:00:15]               │      "
[00:00:16]               │ debg Find.existsByDisplayedByCssSelector('.login-form') with timeout=2500
[00:00:16]               │ debg navigating to login url: http://localhost:6191/login
[00:00:16]               │ debg Navigate to: http://localhost:6191/login
[00:00:16]               │ debg ... sleep(700) start
[00:00:16]               │ debg browser[INFO] http://localhost:6191/login?_t=1584717403211 350 Refused to execute inline script because it violates the following Content Security Policy directive: "script-src 'unsafe-eval' 'self'". Either the 'unsafe-inline' keyword, a hash ('sha256-P5polb1UreUSOe5V/Pv7tc+yeZuJXiOi/3fqhGsU7BE='), or a nonce ('nonce-...') is required to enable inline execution.
[00:00:16]               │
[00:00:16]               │ debg browser[INFO] http://localhost:6191/bundles/app/login/bootstrap.js 9:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:00:17]               │ debg ... sleep(700) end
[00:00:17]               │ debg returned from get, calling refresh
[00:00:19]               │ debg browser[INFO] http://localhost:6191/bundles/plugin/data/data.plugin.js 62:139970 "INFO: 2020-03-20T15:16:45Z
[00:00:19]               │        Adding connection to http://localhost:6191/elasticsearch
[00:00:19]               │
[00:00:19]               │      "
[00:00:19]               │ debg browser[INFO] http://localhost:6191/login?_t=1584717403211 350 Refused to execute inline script because it violates the following Content Security Policy directive: "script-src 'unsafe-eval' 'self'". Either the 'unsafe-inline' keyword, a hash ('sha256-P5polb1UreUSOe5V/Pv7tc+yeZuJXiOi/3fqhGsU7BE='), or a nonce ('nonce-...') is required to enable inline execution.
[00:00:19]               │
[00:00:19]               │ debg browser[INFO] http://localhost:6191/bundles/app/login/bootstrap.js 9:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:00:19]               │ debg currentUrl = http://localhost:6191/login
[00:00:19]               │          appUrl = http://localhost:6191/login
[00:00:19]               │ debg Find.findByCssSelector('[data-test-subj="kibanaChrome"]') with timeout=60000
[00:00:20]               │ debg browser[INFO] http://localhost:6191/bundles/plugin/data/data.plugin.js 62:139970 "INFO: 2020-03-20T15:16:47Z
[00:00:20]               │        Adding connection to http://localhost:6191/elasticsearch
[00:00:20]               │
[00:00:20]               │      "
[00:00:20]               │ debg ... sleep(501) start
[00:00:21]               │ debg ... sleep(501) end
[00:00:21]               │ debg in navigateTo url = http://localhost:6191/login#/
[00:00:21]               │ debg TestSubjects.exists(statusPageContainer)
[00:00:21]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="statusPageContainer"]') with timeout=2500
[00:00:23]               │ debg --- retry.tryForTime error: [data-test-subj="statusPageContainer"] is not displayed
[00:00:24]               │ debg TestSubjects.setValue(loginUsername, transform_poweruser)
[00:00:24]               │ debg TestSubjects.click(loginUsername)
[00:00:24]               │ debg Find.clickByCssSelector('[data-test-subj="loginUsername"]') with timeout=10000
[00:00:24]               │ debg Find.findByCssSelector('[data-test-subj="loginUsername"]') with timeout=10000
[00:00:24]               │ debg TestSubjects.setValue(loginPassword, tfp001)
[00:00:24]               │ debg TestSubjects.click(loginPassword)
[00:00:24]               │ debg Find.clickByCssSelector('[data-test-subj="loginPassword"]') with timeout=10000
[00:00:24]               │ debg Find.findByCssSelector('[data-test-subj="loginPassword"]') with timeout=10000
[00:00:24]               │ debg TestSubjects.click(loginSubmit)
[00:00:24]               │ debg Find.clickByCssSelector('[data-test-subj="loginSubmit"]') with timeout=10000
[00:00:24]               │ debg Find.findByCssSelector('[data-test-subj="loginSubmit"]') with timeout=10000
[00:00:24]               │ debg Find.findByCssSelector('[data-test-subj="kibanaChrome"] nav:not(.ng-hide) ') with timeout=20000
[00:00:29]               │ debg browser[INFO] http://localhost:6191/app/kibana 350 Refused to execute inline script because it violates the following Content Security Policy directive: "script-src 'unsafe-eval' 'self'". Either the 'unsafe-inline' keyword, a hash ('sha256-P5polb1UreUSOe5V/Pv7tc+yeZuJXiOi/3fqhGsU7BE='), or a nonce ('nonce-...') is required to enable inline execution.
[00:00:29]               │
[00:00:29]               │ debg browser[INFO] http://localhost:6191/bundles/app/kibana/bootstrap.js 9:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:00:29]               │ debg browser[INFO] http://localhost:6191/bundles/plugin/data/data.plugin.js 62:139970 "INFO: 2020-03-20T15:16:55Z
[00:00:29]               │        Adding connection to http://localhost:6191/elasticsearch
[00:00:29]               │
[00:00:29]               │      "
[00:00:30]               │ debg Finished login process currentUrl = http://localhost:6191/app/kibana#/home
[00:00:30]               │ debg Waiting up to 20000ms for logout button visible...
[00:00:30]               │ debg TestSubjects.exists(userMenuButton)
[00:00:30]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="userMenuButton"]') with timeout=2500
[00:00:30]               │ debg TestSubjects.exists(userMenu)
[00:00:30]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="userMenu"]') with timeout=2500
[00:00:32]               │ debg --- retry.tryForTime error: [data-test-subj="userMenu"] is not displayed
[00:00:33]               │ debg TestSubjects.click(userMenuButton)
[00:00:33]               │ debg Find.clickByCssSelector('[data-test-subj="userMenuButton"]') with timeout=10000
[00:00:33]               │ debg Find.findByCssSelector('[data-test-subj="userMenuButton"]') with timeout=10000
[00:00:33]               │ debg Waiting up to 20000ms for user menu opened...
[00:00:33]               │ debg TestSubjects.exists(userMenu)
[00:00:33]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="userMenu"]') with timeout=2500
[00:00:33]               │ debg TestSubjects.exists(userMenu > logoutLink)
[00:00:33]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="userMenu"] [data-test-subj="logoutLink"]') with timeout=2500
[00:00:33]             └-: batch transform with terms+date_histogram groups and avg agg
[00:00:33]               └-> "before all" hook
[00:00:33]               └-> loads the home page
[00:00:33]                 └-> "before each" hook: global before each
[00:00:33]                 │ debg navigating to transform url: http://localhost:6191/app/kibana/#/management/elasticsearch/transform
[00:00:33]                 │ debg Navigate to: http://localhost:6191/app/kibana/#/management/elasticsearch/transform
[00:00:33]                 │ debg ... sleep(700) start
[00:00:33]                 │ debg browser[INFO] http://localhost:6191/app/kibana/?_t=1584717420360#/management/elasticsearch/transform 350 Refused to execute inline script because it violates the following Content Security Policy directive: "script-src 'unsafe-eval' 'self'". Either the 'unsafe-inline' keyword, a hash ('sha256-P5polb1UreUSOe5V/Pv7tc+yeZuJXiOi/3fqhGsU7BE='), or a nonce ('nonce-...') is required to enable inline execution.
[00:00:33]                 │
[00:00:33]                 │ debg browser[INFO] http://localhost:6191/bundles/app/kibana/bootstrap.js 9:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:00:34]                 │ debg ... sleep(700) end
[00:00:34]                 │ debg returned from get, calling refresh
[00:00:34]                 │ debg browser[INFO] http://localhost:6191/app/kibana/?_t=1584717420360#/management/elasticsearch/transform 350 Refused to execute inline script because it violates the following Content Security Policy directive: "script-src 'unsafe-eval' 'self'". Either the 'unsafe-inline' keyword, a hash ('sha256-P5polb1UreUSOe5V/Pv7tc+yeZuJXiOi/3fqhGsU7BE='), or a nonce ('nonce-...') is required to enable inline execution.
[00:00:34]                 │
[00:00:34]                 │ debg browser[INFO] http://localhost:6191/bundles/app/kibana/bootstrap.js 9:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:00:34]                 │ debg currentUrl = http://localhost:6191/app/kibana/#/management/elasticsearch/transform
[00:00:34]                 │          appUrl = http://localhost:6191/app/kibana/#/management/elasticsearch/transform
[00:00:34]                 │ debg Find.findByCssSelector('[data-test-subj="kibanaChrome"]') with timeout=60000
[00:00:38]                 │ debg TestSubjects.find(kibanaChrome)
[00:00:38]                 │ debg Find.findByCssSelector('[data-test-subj="kibanaChrome"]') with timeout=10000
[00:00:38]                 │ debg browser[INFO] http://localhost:6191/bundles/plugin/data/data.plugin.js 62:139970 "INFO: 2020-03-20T15:17:03Z
[00:00:38]                 │        Adding connection to http://localhost:6191/elasticsearch
[00:00:38]                 │
[00:00:38]                 │      "
[00:00:38]                 │ debg ... sleep(501) start
[00:00:39]                 │ debg ... sleep(501) end
[00:00:39]                 │ debg in navigateTo url = http://localhost:6191/app/kibana/#/management/elasticsearch/transform/transform_management?_g=(refreshInterval:(pause:!f,value:30000),time:(from:now-15m,to:now))
[00:00:39]                 │ debg TestSubjects.exists(statusPageContainer)
[00:00:39]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="statusPageContainer"]') with timeout=2500
[00:00:41]                 │ debg --- retry.tryForTime error: [data-test-subj="statusPageContainer"] is not displayed
[00:00:42]                 │ debg TestSubjects.exists(transformPageTransformList)
[00:00:42]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="transformPageTransformList"]') with timeout=120000
[00:00:42]                 └- ✓ pass  (8.8s) "transform creation_index_pattern batch transform with terms+date_histogram groups and avg agg loads the home page"
[00:00:42]               └-> displays the stats bar
[00:00:42]                 └-> "before each" hook: global before each
[00:00:42]                 │ debg TestSubjects.exists(transformStatsBar)
[00:00:42]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="transformStatsBar"]') with timeout=120000
[00:00:42]                 └- ✓ pass  (31ms) "transform creation_index_pattern batch transform with terms+date_histogram groups and avg agg displays the stats bar"
[00:00:42]               └-> loads the source selection modal
[00:00:42]                 └-> "before each" hook: global before each
[00:00:42]                 │ debg TestSubjects.exists(transformNoTransformsFound)
[00:00:42]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="transformNoTransformsFound"]') with timeout=2500
[00:00:42]                 │ debg TestSubjects.click(transformCreateFirstButton)
[00:00:42]                 │ debg Find.clickByCssSelector('[data-test-subj="transformCreateFirstButton"]') with timeout=10000
[00:00:42]                 │ debg Find.findByCssSelector('[data-test-subj="transformCreateFirstButton"]') with timeout=10000
[00:00:42]                 │ debg TestSubjects.exists(transformSelectSourceModal)
[00:00:42]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="transformSelectSourceModal"]') with timeout=120000
[00:00:42]                 └- ✓ pass  (263ms) "transform creation_index_pattern batch transform with terms+date_histogram groups and avg agg loads the source selection modal"
[00:00:42]               └-> selects the source data
[00:00:42]                 └-> "before each" hook: global before each
[00:00:42]                 │ debg TestSubjects.setValue(savedObjectFinderSearchInput, ecommerce)
[00:00:42]                 │ debg TestSubjects.click(savedObjectFinderSearchInput)
[00:00:42]                 │ debg Find.clickByCssSelector('[data-test-subj="savedObjectFinderSearchInput"]') with timeout=10000
[00:00:42]                 │ debg Find.findByCssSelector('[data-test-subj="savedObjectFinderSearchInput"]') with timeout=10000
[00:00:42]                 │ debg TestSubjects.exists(savedObjectTitleecommerce)
[00:00:42]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="savedObjectTitleecommerce"]') with timeout=120000
[00:00:43]                 │ debg TestSubjects.clickWhenNotDisabled(savedObjectTitleecommerce)
[00:00:43]                 │ debg Find.clickByCssSelectorWhenNotDisabled('[data-test-subj="savedObjectTitleecommerce"]') with timeout=10000
[00:00:43]                 │ debg Find.findByCssSelector('[data-test-subj="savedObjectTitleecommerce"]') with timeout=10000
[00:00:43]                 │ debg TestSubjects.exists(transformPageCreateTransform)
[00:00:43]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="transformPageCreateTransform"]') with timeout=120000
[00:00:43]                 └- ✓ pass  (829ms) "transform creation_index_pattern batch transform with terms+date_histogram groups and avg agg selects the source data"
[00:00:43]               └-> displays the define pivot step
[00:00:43]                 └-> "before each" hook: global before each
[00:00:43]                 │ debg TestSubjects.exists(transformStepDefineForm)
[00:00:43]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="transformStepDefineForm"]') with timeout=120000
[00:00:43]                 └- ✓ pass  (431ms) "transform creation_index_pattern batch transform with terms+date_histogram groups and avg agg displays the define pivot step"
[00:00:43]               └-> loads the source index preview
[00:00:43]                 └-> "before each" hook: global before each
[00:00:43]                 │ debg TestSubjects.exists(transformSourceIndexPreview loaded)
[00:00:43]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="transformSourceIndexPreview loaded"]') with timeout=120000
[00:00:43]                 └- ✓ pass  (31ms) "transform creation_index_pattern batch transform with terms+date_histogram groups and avg agg loads the source index preview"
[00:00:43]               └-> shows the source index preview
[00:00:43]                 └-> "before each" hook: global before each
[00:00:43]                 │ debg TestSubjects.find(~transformSourceIndexPreview)
[00:00:43]                 │ debg Find.findByCssSelector('[data-test-subj~="transformSourceIndexPreview"]') with timeout=10000
[00:00:43]                 │ debg --- retry.tryForTime error: EuiInMemoryTable rows should be 5 (got 0)
[00:00:44]                 │ debg TestSubjects.find(~transformSourceIndexPreview)
[00:00:44]                 │ debg Find.findByCssSelector('[data-test-subj~="transformSourceIndexPreview"]') with timeout=10000
[00:00:44]                 └- ✓ pass  (607ms) "transform creation_index_pattern batch transform with terms+date_histogram groups and avg agg shows the source index preview"
[00:00:44]               └-> displays an empty pivot preview
[00:00:44]                 └-> "before each" hook: global before each
[00:00:44]                 │ debg TestSubjects.exists(transformPivotPreview empty)
[00:00:44]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="transformPivotPreview empty"]') with timeout=120000
[00:00:44]                 └- ✓ pass  (36ms) "transform creation_index_pattern batch transform with terms+date_histogram groups and avg agg displays an empty pivot preview"
[00:00:44]               └-> displays the query input
[00:00:44]                 └-> "before each" hook: global before each
[00:00:44]                 │ debg TestSubjects.exists(tarnsformQueryInput)
[00:00:44]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="tarnsformQueryInput"]') with timeout=120000
[00:00:44]                 │ debg TestSubjects.getVisibleText(tarnsformQueryInput)
[00:00:44]                 │ debg TestSubjects.find(tarnsformQueryInput)
[00:00:44]                 │ debg Find.findByCssSelector('[data-test-subj="tarnsformQueryInput"]') with timeout=10000
[00:00:44]                 └- ✓ pass  (59ms) "transform creation_index_pattern batch transform with terms+date_histogram groups and avg agg displays the query input"
[00:00:44]               └-> displays the advanced query editor switch
[00:00:44]                 └-> "before each" hook: global before each
[00:00:44]                 │ debg TestSubjects.exists(transformAdvancedQueryEditorSwitch)
[00:00:44]                 │ debg Find.existsByCssSelector('[data-test-subj="transformAdvancedQueryEditorSwitch"]') with timeout=120000
[00:00:44]                 │ debg TestSubjects.getAttribute(transformAdvancedQueryEditorSwitch, aria-checked)
[00:00:44]                 │ debg TestSubjects.find(transformAdvancedQueryEditorSwitch)
[00:00:44]                 │ debg Find.findByCssSelector('[data-test-subj="transformAdvancedQueryEditorSwitch"]') with timeout=10000
[00:00:44]                 └- ✓ pass  (33ms) "transform creation_index_pattern batch transform with terms+date_histogram groups and avg agg displays the advanced query editor switch"
[00:00:44]               └-> adds the group by entries
[00:00:44]                 └-> "before each" hook: global before each
[00:00:44]                 │ debg TestSubjects.exists(transformGroupBySelection > comboBoxInput)
[00:00:44]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="transformGroupBySelection"] [data-test-subj="comboBoxInput"]') with timeout=120000
[00:00:44]                 │ debg comboBox.getComboBoxSelectedOptions, comboBoxSelector: transformGroupBySelection > comboBoxInput
[00:00:44]                 │ debg TestSubjects.find(transformGroupBySelection > comboBoxInput)
[00:00:44]                 │ debg Find.findByCssSelector('[data-test-subj="transformGroupBySelection"] [data-test-subj="comboBoxInput"]') with timeout=10000
[00:00:44]                 │ debg comboBox.set, comboBoxSelector: transformGroupBySelection > comboBoxInput
[00:00:44]                 │ debg TestSubjects.find(transformGroupBySelection > comboBoxInput)
[00:00:44]                 │ debg Find.findByCssSelector('[data-test-subj="transformGroupBySelection"] [data-test-subj="comboBoxInput"]') with timeout=10000
[00:00:44]                 │ debg comboBox.setElement, value: terms(category.keyword)
[00:00:44]                 │ debg comboBox.isOptionSelected, value: terms(category.keyword)
[00:00:47]                 │ debg TestSubjects.exists(~comboBoxOptionsList)
[00:00:47]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj~="comboBoxOptionsList"]') with timeout=2500
[00:00:47]                 │ debg Find.allByCssSelector('.euiFilterSelectItem[title^="terms(category.keyword)"]') with timeout=2500
[00:00:47]                 │ debg TestSubjects.exists(~comboBoxOptionsList)
[00:00:47]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj~="comboBoxOptionsList"]') with timeout=2500
[00:00:50]                 │ debg --- retry.tryForTime error: [data-test-subj~="comboBoxOptionsList"] is not displayed
[00:00:50]                 │ debg comboBox.getComboBoxSelectedOptions, comboBoxSelector: transformGroupBySelection > comboBoxInput
[00:00:50]                 │ debg TestSubjects.find(transformGroupBySelection > comboBoxInput)
[00:00:50]                 │ debg Find.findByCssSelector('[data-test-subj="transformGroupBySelection"] [data-test-subj="comboBoxInput"]') with timeout=10000
[00:00:50]                 │ debg TestSubjects.exists(transformGroupByEntry 0)
[00:00:50]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="transformGroupByEntry 0"]') with timeout=120000
[00:00:50]                 │ debg TestSubjects.getVisibleText(transformGroupByEntry 0 > transformGroupByEntryLabel)
[00:00:50]                 │ debg TestSubjects.find(transformGroupByEntry 0 > transformGroupByEntryLabel)
[00:00:50]                 │ debg Find.findByCssSelector('[data-test-subj="transformGroupByEntry 0"] [data-test-subj="transformGroupByEntryLabel"]') with timeout=10000
[00:00:50]                 │ debg TestSubjects.exists(transformGroupBySelection > comboBoxInput)
[00:00:50]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="transformGroupBySelection"] [data-test-subj="comboBoxInput"]') with timeout=120000
[00:00:50]                 │ debg comboBox.getComboBoxSelectedOptions, comboBoxSelector: transformGroupBySelection > comboBoxInput
[00:00:50]                 │ debg TestSubjects.find(transformGroupBySelection > comboBoxInput)
[00:00:50]                 │ debg Find.findByCssSelector('[data-test-subj="transformGroupBySelection"] [data-test-subj="comboBoxInput"]') with timeout=10000
[00:00:50]                 │ debg comboBox.set, comboBoxSelector: transformGroupBySelection > comboBoxInput
[00:00:50]                 │ debg TestSubjects.find(transformGroupBySelection > comboBoxInput)
[00:00:50]                 │ debg Find.findByCssSelector('[data-test-subj="transformGroupBySelection"] [data-test-subj="comboBoxInput"]') with timeout=10000
[00:00:50]                 │ debg comboBox.setElement, value: date_histogram(order_date)
[00:00:50]                 │ debg comboBox.isOptionSelected, value: date_histogram(order_date)
[00:00:53]                 │ debg TestSubjects.exists(~comboBoxOptionsList)
[00:00:53]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj~="comboBoxOptionsList"]') with timeout=2500
[00:00:53]                 │ debg Find.allByCssSelector('.euiFilterSelectItem[title^="date_histogram(order_date)"]') with timeout=2500
[00:00:53]                 │ debg TestSubjects.exists(~comboBoxOptionsList)
[00:00:53]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj~="comboBoxOptionsList"]') with timeout=2500
[00:00:56]                 │ debg --- retry.tryForTime error: [data-test-subj~="comboBoxOptionsList"] is not displayed
[00:00:56]                 │ debg comboBox.getComboBoxSelectedOptions, comboBoxSelector: transformGroupBySelection > comboBoxInput
[00:00:56]                 │ debg TestSubjects.find(transformGroupBySelection > comboBoxInput)
[00:00:56]                 │ debg Find.findByCssSelector('[data-test-subj="transformGroupBySelection"] [data-test-subj="comboBoxInput"]') with timeout=10000
[00:00:56]                 │ debg TestSubjects.exists(transformGroupByEntry 1)
[00:00:56]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="transformGroupByEntry 1"]') with timeout=120000
[00:00:56]                 │ debg TestSubjects.getVisibleText(transformGroupByEntry 1 > transformGroupByEntryLabel)
[00:00:56]                 │ debg TestSubjects.find(transformGroupByEntry 1 > transformGroupByEntryLabel)
[00:00:56]                 │ debg Find.findByCssSelector('[data-test-subj="transformGroupByEntry 1"] [data-test-subj="transformGroupByEntryLabel"]') with timeout=10000
[00:00:56]                 │ debg TestSubjects.getVisibleText(transformGroupByEntry 1 > transformGroupByEntryIntervalLabel)
[00:00:56]                 │ debg TestSubjects.find(transformGroupByEntry 1 > transformGroupByEntryIntervalLabel)
[00:00:56]                 │ debg Find.findByCssSelector('[data-test-subj="transformGroupByEntry 1"] [data-test-subj="transformGroupByEntryIntervalLabel"]') with timeout=10000
[00:00:56]                 └- ✓ pass  (12.2s) "transform creation_index_pattern batch transform with terms+date_histogram groups and avg agg adds the group by entries"
[00:00:56]               └-> adds the aggregation entries
[00:00:56]                 └-> "before each" hook: global before each
[00:00:56]                 │ debg TestSubjects.exists(transformAggregationSelection > comboBoxInput)
[00:00:56]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="transformAggregationSelection"] [data-test-subj="comboBoxInput"]') with timeout=120000
[00:00:56]                 │ debg comboBox.getComboBoxSelectedOptions, comboBoxSelector: transformAggregationSelection > comboBoxInput
[00:00:56]                 │ debg TestSubjects.find(transformAggregationSelection > comboBoxInput)
[00:00:56]                 │ debg Find.findByCssSelector('[data-test-subj="transformAggregationSelection"] [data-test-subj="comboBoxInput"]') with timeout=10000
[00:00:56]                 │ debg comboBox.set, comboBoxSelector: transformAggregationSelection > comboBoxInput
[00:00:56]                 │ debg TestSubjects.find(transformAggregationSelection > comboBoxInput)
[00:00:56]                 │ debg Find.findByCssSelector('[data-test-subj="transformAggregationSelection"] [data-test-subj="comboBoxInput"]') with timeout=10000
[00:00:56]                 │ debg comboBox.setElement, value: avg(products.base_price)
[00:00:56]                 │ debg comboBox.isOptionSelected, value: avg(products.base_price)
[00:00:59]                 │ debg TestSubjects.exists(~comboBoxOptionsList)
[00:00:59]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj~="comboBoxOptionsList"]') with timeout=2500
[00:00:59]                 │ debg Find.allByCssSelector('.euiFilterSelectItem[title^="avg(products.base_price)"]') with timeout=2500
[00:00:59]                 │ debg TestSubjects.exists(~comboBoxOptionsList)
[00:00:59]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj~="comboBoxOptionsList"]') with timeout=2500
[00:01:02]                 │ERROR browser[SEVERE] http://localhost:6191/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js 399:77070 TypeError: Cannot read property 'properties' of undefined
[00:01:02]                 │          at http://localhost:6191/bundles/kibana.bundle.js:2:150943
[00:01:02]                 │          at Array.map (<anonymous>)
[00:01:02]                 │          at http://localhost:6191/bundles/kibana.bundle.js:2:150840
[00:01:02]                 │          at ca (http://localhost:6191/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js:400:59331)
[00:01:02]                 │          at Ga (http://localhost:6191/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js:400:67553)
[00:01:02]                 │          at $a (http://localhost:6191/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js:400:67372)
[00:01:02]                 │          at As (http://localhost:6191/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js:400:107875)
[00:01:02]                 │          at ml (http://localhost:6191/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js:400:90017)
[00:01:02]                 │          at fl (http://localhost:6191/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js:400:89942)
[00:01:02]                 │          at il (http://localhost:6191/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js:400:87290)
[00:01:02]                 │ debg --- retry.tryForTime error: [data-test-subj~="comboBoxOptionsList"] is not displayed
[00:01:03]                 │ debg comboBox.getComboBoxSelectedOptions, comboBoxSelector: transformAggregationSelection > comboBoxInput
[00:01:03]                 │ debg TestSubjects.find(transformAggregationSelection > comboBoxInput)
[00:01:03]                 │ debg Find.findByCssSelector('[data-test-subj="transformAggregationSelection"] [data-test-subj="comboBoxInput"]') with timeout=10000
[00:01:13]                 │ debg --- retry.tryForTime error: Waiting for element to be located By(css selector, [data-test-subj="transformAggregationSelection"] [data-test-subj="comboBoxInput"])
[00:01:13]                 │      Wait timed out after 10046ms
[00:01:13]                 │ info Taking screenshot "/dev/shm/workspace/kibana/x-pack/test/functional/screenshots/failure/transform creation_index_pattern batch transform with terms_date_histogram groups and avg agg adds the aggregation entries.png"
[00:01:13]                 │ info Current URL is: http://localhost:6191/app/kibana/#/management/elasticsearch/transform/create_transform/5193f870-d861-11e9-a311-0fa548c5f953
[00:01:13]                 │ info Saving page source to: /dev/shm/workspace/kibana/x-pack/test/functional/failure_debug/html/transform creation_index_pattern batch transform with terms_date_histogram groups and avg agg adds the aggregation entries.html
[00:01:13]                 └- ✖ fail: "transform creation_index_pattern batch transform with terms+date_histogram groups and avg agg adds the aggregation entries"
[00:01:13]                 │

Stack Trace

Error: retry.tryForTime timeout: TimeoutError: Waiting for element to be located By(css selector, [data-test-subj="transformAggregationSelection"] [data-test-subj="comboBoxInput"])
Wait timed out after 10046ms
    at /dev/shm/workspace/kibana/node_modules/selenium-webdriver/lib/webdriver.js:841:17
    at process._tickCallback (internal/process/next_tick.js:68:7)
    at onFailure (/dev/shm/workspace/kibana/test/common/services/retry/retry_for_success.ts:28:9)
    at retryForSuccess (/dev/shm/workspace/kibana/test/common/services/retry/retry_for_success.ts:68:13)

Kibana Pipeline / kibana-xpack-agent / Chrome X-Pack UI Functional Tests.x-pack/test/functional/apps/transform/creation_index_pattern·ts.transform creation_index_pattern batch transform with terms+date_histogram groups and avg agg adds the aggregation entries

Link to Jenkins

Standard Out

Failed Tests Reporter:
  - Test has not failed recently on tracked branches

[00:00:00]       │
[00:00:00]         └-: transform
[00:00:00]           └-> "before all" hook
[00:00:00]           └-> "before all" hook
[00:00:00]             │ debg creating role transform_source
[00:00:00]             │ info [o.e.x.s.a.r.TransportPutRoleAction] [kibana-ci-immutable-debian-tests-xl-1584715024230899445] added role [transform_source]
[00:00:00]             │ debg created role transform_source
[00:00:00]             │ debg creating role transform_dest
[00:00:00]             │ info [o.e.x.s.a.r.TransportPutRoleAction] [kibana-ci-immutable-debian-tests-xl-1584715024230899445] added role [transform_dest]
[00:00:00]             │ debg created role transform_dest
[00:00:00]             │ debg creating role transform_dest_readonly
[00:00:00]             │ info [o.e.x.s.a.r.TransportPutRoleAction] [kibana-ci-immutable-debian-tests-xl-1584715024230899445] added role [transform_dest_readonly]
[00:00:00]             │ debg created role transform_dest_readonly
[00:00:00]             │ debg creating role transform_ui_extras
[00:00:00]             │ info [o.e.x.s.a.r.TransportPutRoleAction] [kibana-ci-immutable-debian-tests-xl-1584715024230899445] added role [transform_ui_extras]
[00:00:00]             │ debg created role transform_ui_extras
[00:00:00]             │ debg creating user transform_poweruser
[00:00:00]             │ info [o.e.x.s.a.u.TransportPutUserAction] [kibana-ci-immutable-debian-tests-xl-1584715024230899445] added user [transform_poweruser]
[00:00:00]             │ debg created user transform_poweruser
[00:00:00]             │ debg creating user transform_viewer
[00:00:01]             │ info [o.e.x.s.a.u.TransportPutUserAction] [kibana-ci-immutable-debian-tests-xl-1584715024230899445] added user [transform_viewer]
[00:00:01]             │ debg created user transform_viewer
[00:00:01]           └-: creation_index_pattern
[00:00:01]             └-> "before all" hook
[00:00:01]             └-> "before all" hook
[00:00:01]               │ info [ml/ecommerce] Loading "mappings.json"
[00:00:01]               │ info [ml/ecommerce] Loading "data.json.gz"
[00:00:01]               │ info [o.e.c.m.MetaDataCreateIndexService] [kibana-ci-immutable-debian-tests-xl-1584715024230899445] [ecommerce] creating index, cause [api], templates [], shards [1]/[0], mappings [_doc]
[00:00:01]               │ info [o.e.c.r.a.AllocationService] [kibana-ci-immutable-debian-tests-xl-1584715024230899445] Cluster health status changed from [YELLOW] to [GREEN] (reason: [shards started [[ecommerce][0]]]).
[00:00:01]               │ info [ml/ecommerce] Created index "ecommerce"
[00:00:01]               │ debg [ml/ecommerce] "ecommerce" settings {"index":{"number_of_replicas":"0","number_of_shards":"1"}}
[00:00:01]               │ info [o.e.c.m.MetaDataDeleteIndexService] [kibana-ci-immutable-debian-tests-xl-1584715024230899445] [.kibana_1/4glQT_l6Rw-jiemrQpKtkw] deleting index
[00:00:01]               │ info [ml/ecommerce] Deleted existing index [".kibana_1"]
[00:00:01]               │ info [o.e.c.m.MetaDataCreateIndexService] [kibana-ci-immutable-debian-tests-xl-1584715024230899445] [.kibana_1] creating index, cause [api], templates [], shards [1]/[0], mappings [_doc]
[00:00:01]               │ info [o.e.c.r.a.AllocationService] [kibana-ci-immutable-debian-tests-xl-1584715024230899445] Cluster health status changed from [YELLOW] to [GREEN] (reason: [shards started [[.kibana_1][0]]]).
[00:00:01]               │ info [ml/ecommerce] Created index ".kibana_1"
[00:00:01]               │ debg [ml/ecommerce] ".kibana_1" settings {"index":{"auto_expand_replicas":"0-1","number_of_replicas":"0","number_of_shards":"1"}}
[00:00:03]               │ proc [kibana]   log   [15:12:47.896] [warning][plugins][usageCollection] { Error: mapping set to strict, dynamic introduction of [settings] within [maps-telemetry] is not allowed: [strict_dynamic_mapping_exception] mapping set to strict, dynamic introduction of [settings] within [maps-telemetry] is not allowed
[00:00:03]               │ proc [kibana]     at respond (/dev/shm/workspace/install/kibana-9/node_modules/elasticsearch/src/lib/transport.js:349:15)
[00:00:03]               │ proc [kibana]     at checkRespForFailure (/dev/shm/workspace/install/kibana-9/node_modules/elasticsearch/src/lib/transport.js:306:7)
[00:00:03]               │ proc [kibana]     at HttpConnector.<anonymous> (/dev/shm/workspace/install/kibana-9/node_modules/elasticsearch/src/lib/connectors/http.js:173:7)
[00:00:03]               │ proc [kibana]     at IncomingMessage.wrapper (/dev/shm/workspace/install/kibana-9/node_modules/elasticsearch/node_modules/lodash/lodash.js:4929:19)
[00:00:03]               │ proc [kibana]     at IncomingMessage.emit (events.js:203:15)
[00:00:03]               │ proc [kibana]     at endReadableNT (_stream_readable.js:1145:12)
[00:00:03]               │ proc [kibana]     at process._tickCallback (internal/process/next_tick.js:63:19)
[00:00:03]               │ proc [kibana]   status: 400,
[00:00:03]               │ proc [kibana]   displayName: 'BadRequest',
[00:00:03]               │ proc [kibana]   message:
[00:00:03]               │ proc [kibana]    'mapping set to strict, dynamic introduction of [settings] within [maps-telemetry] is not allowed: [strict_dynamic_mapping_exception] mapping set to strict, dynamic introduction of [settings] within [maps-telemetry] is not allowed',
[00:00:03]               │ proc [kibana]   path: '/.kibana/_doc/maps-telemetry%3Amaps-telemetry',
[00:00:03]               │ proc [kibana]   query: { refresh: 'wait_for' },
[00:00:03]               │ proc [kibana]   body:
[00:00:03]               │ proc [kibana]    { error:
[00:00:03]               │ proc [kibana]       { root_cause: [Array],
[00:00:03]               │ proc [kibana]         type: 'strict_dynamic_mapping_exception',
[00:00:03]               │ proc [kibana]         reason:
[00:00:03]               │ proc [kibana]          'mapping set to strict, dynamic introduction of [settings] within [maps-telemetry] is not allowed' },
[00:00:03]               │ proc [kibana]      status: 400 },
[00:00:03]               │ proc [kibana]   statusCode: 400,
[00:00:03]               │ proc [kibana]   response:
[00:00:03]               │ proc [kibana]    '{"error":{"root_cause":[{"type":"strict_dynamic_mapping_exception","reason":"mapping set to strict, dynamic introduction of [settings] within [maps-telemetry] is not allowed"}],"type":"strict_dynamic_mapping_exception","reason":"mapping set to strict, dynamic introduction of [settings] within [maps-telemetry] is not allowed"},"status":400}',
[00:00:03]               │ proc [kibana]   toString: [Function],
[00:00:03]               │ proc [kibana]   toJSON: [Function],
[00:00:03]               │ proc [kibana]   isBoom: true,
[00:00:03]               │ proc [kibana]   isServer: false,
[00:00:03]               │ proc [kibana]   data: null,
[00:00:03]               │ proc [kibana]   output:
[00:00:03]               │ proc [kibana]    { statusCode: 400,
[00:00:03]               │ proc [kibana]      payload:
[00:00:03]               │ proc [kibana]       { message:
[00:00:03]               │ proc [kibana]          'mapping set to strict, dynamic introduction of [settings] within [maps-telemetry] is not allowed: [strict_dynamic_mapping_exception] mapping set to strict, dynamic introduction of [settings] within [maps-telemetry] is not allowed',
[00:00:03]               │ proc [kibana]         statusCode: 400,
[00:00:03]               │ proc [kibana]         error: 'Bad Request' },
[00:00:03]               │ proc [kibana]      headers: {} },
[00:00:03]               │ proc [kibana]   reformat: [Function],
[00:00:03]               │ proc [kibana]   [Symbol(SavedObjectsClientErrorCode)]: 'SavedObjectsClient/badRequest' }
[00:00:03]               │ proc [kibana]   log   [15:12:47.913] [warning][plugins][usageCollection] Unable to fetch data from maps-telemetry collector
[00:00:07]               │ info [ml/ecommerce] Indexed 4675 docs into "ecommerce"
[00:00:07]               │ info [ml/ecommerce] Indexed 4 docs into ".kibana_1"
[00:00:08]               │ info [o.e.c.m.MetaDataMappingService] [kibana-ci-immutable-debian-tests-xl-1584715024230899445] [.kibana_1/Tk2NeZzlSSWeydmuTfrIow] update_mapping [_doc]
[00:00:08]               │ debg Migrating saved objects
[00:00:08]               │ proc [kibana]   log   [15:12:52.933] [info][savedobjects-service] Creating index .kibana_2.
[00:00:08]               │ info [o.e.c.m.MetaDataCreateIndexService] [kibana-ci-immutable-debian-tests-xl-1584715024230899445] [.kibana_2] creating index, cause [api], templates [], shards [1]/[1], mappings [_doc]
[00:00:08]               │ info [o.e.c.r.a.AllocationService] [kibana-ci-immutable-debian-tests-xl-1584715024230899445] updating number_of_replicas to [0] for indices [.kibana_2]
[00:00:08]               │ info [o.e.c.r.a.AllocationService] [kibana-ci-immutable-debian-tests-xl-1584715024230899445] Cluster health status changed from [YELLOW] to [GREEN] (reason: [shards started [[.kibana_2][0]]]).
[00:00:08]               │ proc [kibana]   log   [15:12:53.115] [info][savedobjects-service] Migrating .kibana_1 saved objects to .kibana_2
[00:00:08]               │ info [o.e.c.m.MetaDataMappingService] [kibana-ci-immutable-debian-tests-xl-1584715024230899445] [.kibana_2/Tmo2ymYmSnGiLZdvgu7SGQ] update_mapping [_doc]
[00:00:08]               │ info [o.e.c.m.MetaDataMappingService] [kibana-ci-immutable-debian-tests-xl-1584715024230899445] [.kibana_2/Tmo2ymYmSnGiLZdvgu7SGQ] update_mapping [_doc]
[00:00:08]               │ info [o.e.c.m.MetaDataMappingService] [kibana-ci-immutable-debian-tests-xl-1584715024230899445] [.kibana_2/Tmo2ymYmSnGiLZdvgu7SGQ] update_mapping [_doc]
[00:00:08]               │ proc [kibana]   log   [15:12:53.500] [info][savedobjects-service] Pointing alias .kibana to .kibana_2.
[00:00:09]               │ proc [kibana]   log   [15:12:53.669] [info][savedobjects-service] Finished in 741ms.
[00:00:09]               │ debg SecurityPage.forceLogout
[00:00:09]               │ debg Find.existsByDisplayedByCssSelector('.login-form') with timeout=100
[00:00:09]               │ debg --- retry.tryForTime error: .login-form is not displayed
[00:00:09]               │ debg Redirecting to /logout to force the logout
[00:00:10]               │ debg Waiting on the login form to appear
[00:00:10]               │ debg Waiting up to 100000ms for login form...
[00:00:10]               │ debg Find.existsByDisplayedByCssSelector('.login-form') with timeout=2500
[00:00:10]               │ debg browser[INFO] http://localhost:6191/logout?_t=1584717174384 350 Refused to execute inline script because it violates the following Content Security Policy directive: "script-src 'unsafe-eval' 'self'". Either the 'unsafe-inline' keyword, a hash ('sha256-P5polb1UreUSOe5V/Pv7tc+yeZuJXiOi/3fqhGsU7BE='), or a nonce ('nonce-...') is required to enable inline execution.
[00:00:10]               │
[00:00:10]               │ debg browser[INFO] http://localhost:6191/bundles/app/logout/bootstrap.js 9:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:00:12]               │ debg --- retry.tryForTime error: .login-form is not displayed
[00:00:13]               │ debg Find.existsByDisplayedByCssSelector('.login-form') with timeout=2500
[00:00:17]               │ debg browser[INFO] http://localhost:6191/bundles/plugin/data/data.plugin.js 62:139970 "INFO: 2020-03-20T15:13:01Z
[00:00:17]               │        Adding connection to http://localhost:6191/elasticsearch
[00:00:17]               │
[00:00:17]               │      "
[00:00:17]               │ debg browser[INFO] http://localhost:6191/login?next=%2F 350 Refused to execute inline script because it violates the following Content Security Policy directive: "script-src 'unsafe-eval' 'self'". Either the 'unsafe-inline' keyword, a hash ('sha256-P5polb1UreUSOe5V/Pv7tc+yeZuJXiOi/3fqhGsU7BE='), or a nonce ('nonce-...') is required to enable inline execution.
[00:00:17]               │
[00:00:17]               │ debg browser[INFO] http://localhost:6191/bundles/app/login/bootstrap.js 9:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:00:17]               │ debg --- retry.tryForTime error: .login-form is not displayed
[00:00:18]               │ debg Find.existsByDisplayedByCssSelector('.login-form') with timeout=2500
[00:00:21]               │ debg browser[INFO] http://localhost:6191/bundles/plugin/data/data.plugin.js 62:139970 "INFO: 2020-03-20T15:13:05Z
[00:00:21]               │        Adding connection to http://localhost:6191/elasticsearch
[00:00:21]               │
[00:00:21]               │      "
[00:00:21]               │ debg navigating to login url: http://localhost:6191/login
[00:00:21]               │ debg Navigate to: http://localhost:6191/login
[00:00:22]               │ debg ... sleep(700) start
[00:00:22]               │ debg browser[INFO] http://localhost:6191/login?_t=1584717186481 350 Refused to execute inline script because it violates the following Content Security Policy directive: "script-src 'unsafe-eval' 'self'". Either the 'unsafe-inline' keyword, a hash ('sha256-P5polb1UreUSOe5V/Pv7tc+yeZuJXiOi/3fqhGsU7BE='), or a nonce ('nonce-...') is required to enable inline execution.
[00:00:22]               │
[00:00:22]               │ debg browser[INFO] http://localhost:6191/bundles/app/login/bootstrap.js 9:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:00:22]               │ debg ... sleep(700) end
[00:00:22]               │ debg returned from get, calling refresh
[00:00:22]               │ debg browser[INFO] http://localhost:6191/login?_t=1584717186481 350 Refused to execute inline script because it violates the following Content Security Policy directive: "script-src 'unsafe-eval' 'self'". Either the 'unsafe-inline' keyword, a hash ('sha256-P5polb1UreUSOe5V/Pv7tc+yeZuJXiOi/3fqhGsU7BE='), or a nonce ('nonce-...') is required to enable inline execution.
[00:00:22]               │
[00:00:22]               │ debg browser[INFO] http://localhost:6191/bundles/app/login/bootstrap.js 9:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:00:22]               │ debg currentUrl = http://localhost:6191/login
[00:00:22]               │          appUrl = http://localhost:6191/login
[00:00:22]               │ debg Find.findByCssSelector('[data-test-subj="kibanaChrome"]') with timeout=60000
[00:00:25]               │ debg browser[INFO] http://localhost:6191/bundles/plugin/data/data.plugin.js 62:139970 "INFO: 2020-03-20T15:13:09Z
[00:00:25]               │        Adding connection to http://localhost:6191/elasticsearch
[00:00:25]               │
[00:00:25]               │      "
[00:00:25]               │ debg ... sleep(501) start
[00:00:26]               │ debg ... sleep(501) end
[00:00:26]               │ debg in navigateTo url = http://localhost:6191/login#/
[00:00:26]               │ debg TestSubjects.exists(statusPageContainer)
[00:00:26]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="statusPageContainer"]') with timeout=2500
[00:00:28]               │ debg --- retry.tryForTime error: [data-test-subj="statusPageContainer"] is not displayed
[00:00:29]               │ debg TestSubjects.setValue(loginUsername, transform_poweruser)
[00:00:29]               │ debg TestSubjects.click(loginUsername)
[00:00:29]               │ debg Find.clickByCssSelector('[data-test-subj="loginUsername"]') with timeout=10000
[00:00:29]               │ debg Find.findByCssSelector('[data-test-subj="loginUsername"]') with timeout=10000
[00:00:29]               │ debg TestSubjects.setValue(loginPassword, tfp001)
[00:00:29]               │ debg TestSubjects.click(loginPassword)
[00:00:29]               │ debg Find.clickByCssSelector('[data-test-subj="loginPassword"]') with timeout=10000
[00:00:29]               │ debg Find.findByCssSelector('[data-test-subj="loginPassword"]') with timeout=10000
[00:00:29]               │ debg TestSubjects.click(loginSubmit)
[00:00:29]               │ debg Find.clickByCssSelector('[data-test-subj="loginSubmit"]') with timeout=10000
[00:00:29]               │ debg Find.findByCssSelector('[data-test-subj="loginSubmit"]') with timeout=10000
[00:00:29]               │ debg Find.findByCssSelector('[data-test-subj="kibanaChrome"] nav:not(.ng-hide) ') with timeout=20000
[00:00:37]               │ debg browser[INFO] http://localhost:6191/app/kibana 350 Refused to execute inline script because it violates the following Content Security Policy directive: "script-src 'unsafe-eval' 'self'". Either the 'unsafe-inline' keyword, a hash ('sha256-P5polb1UreUSOe5V/Pv7tc+yeZuJXiOi/3fqhGsU7BE='), or a nonce ('nonce-...') is required to enable inline execution.
[00:00:37]               │
[00:00:37]               │ debg browser[INFO] http://localhost:6191/bundles/app/kibana/bootstrap.js 9:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:00:37]               │ debg browser[INFO] http://localhost:6191/bundles/plugin/data/data.plugin.js 62:139970 "INFO: 2020-03-20T15:13:19Z
[00:00:37]               │        Adding connection to http://localhost:6191/elasticsearch
[00:00:37]               │
[00:00:37]               │      "
[00:00:38]               │ debg Finished login process currentUrl = http://localhost:6191/app/kibana#/home
[00:00:38]               │ debg Waiting up to 20000ms for logout button visible...
[00:00:38]               │ debg TestSubjects.exists(userMenuButton)
[00:00:38]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="userMenuButton"]') with timeout=2500
[00:00:38]               │ debg TestSubjects.exists(userMenu)
[00:00:38]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="userMenu"]') with timeout=2500
[00:00:40]               │ debg --- retry.tryForTime error: [data-test-subj="userMenu"] is not displayed
[00:00:41]               │ debg TestSubjects.click(userMenuButton)
[00:00:41]               │ debg Find.clickByCssSelector('[data-test-subj="userMenuButton"]') with timeout=10000
[00:00:41]               │ debg Find.findByCssSelector('[data-test-subj="userMenuButton"]') with timeout=10000
[00:00:41]               │ debg Waiting up to 20000ms for user menu opened...
[00:00:41]               │ debg TestSubjects.exists(userMenu)
[00:00:41]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="userMenu"]') with timeout=2500
[00:00:41]               │ debg TestSubjects.exists(userMenu > logoutLink)
[00:00:41]               │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="userMenu"] [data-test-subj="logoutLink"]') with timeout=2500
[00:00:41]             └-: batch transform with terms+date_histogram groups and avg agg
[00:00:41]               └-> "before all" hook
[00:00:41]               └-> loads the home page
[00:00:41]                 └-> "before each" hook: global before each
[00:00:41]                 │ debg navigating to transform url: http://localhost:6191/app/kibana/#/management/elasticsearch/transform
[00:00:41]                 │ debg Navigate to: http://localhost:6191/app/kibana/#/management/elasticsearch/transform
[00:00:41]                 │ debg ... sleep(700) start
[00:00:41]                 │ debg browser[INFO] http://localhost:6191/app/kibana/?_t=1584717205991#/management/elasticsearch/transform 350 Refused to execute inline script because it violates the following Content Security Policy directive: "script-src 'unsafe-eval' 'self'". Either the 'unsafe-inline' keyword, a hash ('sha256-P5polb1UreUSOe5V/Pv7tc+yeZuJXiOi/3fqhGsU7BE='), or a nonce ('nonce-...') is required to enable inline execution.
[00:00:41]                 │
[00:00:41]                 │ debg browser[INFO] http://localhost:6191/bundles/app/kibana/bootstrap.js 9:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:00:42]                 │ debg ... sleep(700) end
[00:00:42]                 │ debg returned from get, calling refresh
[00:00:43]                 │ debg browser[INFO] http://localhost:6191/app/kibana/?_t=1584717205991#/management/elasticsearch/transform 350 Refused to execute inline script because it violates the following Content Security Policy directive: "script-src 'unsafe-eval' 'self'". Either the 'unsafe-inline' keyword, a hash ('sha256-P5polb1UreUSOe5V/Pv7tc+yeZuJXiOi/3fqhGsU7BE='), or a nonce ('nonce-...') is required to enable inline execution.
[00:00:43]                 │
[00:00:43]                 │ debg browser[INFO] http://localhost:6191/bundles/app/kibana/bootstrap.js 9:19 "^ A single error about an inline script not firing due to content security policy is expected!"
[00:00:43]                 │ debg currentUrl = http://localhost:6191/app/kibana/#/management/elasticsearch/transform
[00:00:43]                 │          appUrl = http://localhost:6191/app/kibana/#/management/elasticsearch/transform
[00:00:43]                 │ debg Find.findByCssSelector('[data-test-subj="kibanaChrome"]') with timeout=60000
[00:00:48]                 │ debg TestSubjects.find(kibanaChrome)
[00:00:48]                 │ debg Find.findByCssSelector('[data-test-subj="kibanaChrome"]') with timeout=10000
[00:00:48]                 │ debg browser[INFO] http://localhost:6191/bundles/plugin/data/data.plugin.js 62:139970 "INFO: 2020-03-20T15:13:30Z
[00:00:48]                 │        Adding connection to http://localhost:6191/elasticsearch
[00:00:48]                 │
[00:00:48]                 │      "
[00:00:48]                 │ debg ... sleep(501) start
[00:00:48]                 │ debg ... sleep(501) end
[00:00:48]                 │ debg in navigateTo url = http://localhost:6191/app/kibana/#/management/elasticsearch/transform/transform_management?_g=(refreshInterval:(pause:!f,value:30000),time:(from:now-15m,to:now))
[00:00:48]                 │ debg TestSubjects.exists(statusPageContainer)
[00:00:48]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="statusPageContainer"]') with timeout=2500
[00:00:51]                 │ debg --- retry.tryForTime error: [data-test-subj="statusPageContainer"] is not displayed
[00:00:51]                 │ debg TestSubjects.exists(transformPageTransformList)
[00:00:51]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="transformPageTransformList"]') with timeout=120000
[00:00:51]                 └- ✓ pass  (10.5s) "transform creation_index_pattern batch transform with terms+date_histogram groups and avg agg loads the home page"
[00:00:51]               └-> displays the stats bar
[00:00:51]                 └-> "before each" hook: global before each
[00:00:51]                 │ debg TestSubjects.exists(transformStatsBar)
[00:00:51]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="transformStatsBar"]') with timeout=120000
[00:00:51]                 └- ✓ pass  (40ms) "transform creation_index_pattern batch transform with terms+date_histogram groups and avg agg displays the stats bar"
[00:00:51]               └-> loads the source selection modal
[00:00:51]                 └-> "before each" hook: global before each
[00:00:51]                 │ debg TestSubjects.exists(transformNoTransformsFound)
[00:00:51]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="transformNoTransformsFound"]') with timeout=2500
[00:00:52]                 │ debg TestSubjects.click(transformCreateFirstButton)
[00:00:52]                 │ debg Find.clickByCssSelector('[data-test-subj="transformCreateFirstButton"]') with timeout=10000
[00:00:52]                 │ debg Find.findByCssSelector('[data-test-subj="transformCreateFirstButton"]') with timeout=10000
[00:00:52]                 │ debg TestSubjects.exists(transformSelectSourceModal)
[00:00:52]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="transformSelectSourceModal"]') with timeout=120000
[00:00:52]                 └- ✓ pass  (373ms) "transform creation_index_pattern batch transform with terms+date_histogram groups and avg agg loads the source selection modal"
[00:00:52]               └-> selects the source data
[00:00:52]                 └-> "before each" hook: global before each
[00:00:52]                 │ debg TestSubjects.setValue(savedObjectFinderSearchInput, ecommerce)
[00:00:52]                 │ debg TestSubjects.click(savedObjectFinderSearchInput)
[00:00:52]                 │ debg Find.clickByCssSelector('[data-test-subj="savedObjectFinderSearchInput"]') with timeout=10000
[00:00:52]                 │ debg Find.findByCssSelector('[data-test-subj="savedObjectFinderSearchInput"]') with timeout=10000
[00:00:52]                 │ debg TestSubjects.exists(savedObjectTitleecommerce)
[00:00:52]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="savedObjectTitleecommerce"]') with timeout=120000
[00:00:53]                 │ debg TestSubjects.clickWhenNotDisabled(savedObjectTitleecommerce)
[00:00:53]                 │ debg Find.clickByCssSelectorWhenNotDisabled('[data-test-subj="savedObjectTitleecommerce"]') with timeout=10000
[00:00:53]                 │ debg Find.findByCssSelector('[data-test-subj="savedObjectTitleecommerce"]') with timeout=10000
[00:00:53]                 │ debg TestSubjects.exists(transformPageCreateTransform)
[00:00:53]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="transformPageCreateTransform"]') with timeout=120000
[00:00:53]                 └- ✓ pass  (1.0s) "transform creation_index_pattern batch transform with terms+date_histogram groups and avg agg selects the source data"
[00:00:53]               └-> displays the define pivot step
[00:00:53]                 └-> "before each" hook: global before each
[00:00:53]                 │ debg TestSubjects.exists(transformStepDefineForm)
[00:00:53]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="transformStepDefineForm"]') with timeout=120000
[00:00:54]                 └- ✓ pass  (650ms) "transform creation_index_pattern batch transform with terms+date_histogram groups and avg agg displays the define pivot step"
[00:00:54]               └-> loads the source index preview
[00:00:54]                 └-> "before each" hook: global before each
[00:00:54]                 │ debg TestSubjects.exists(transformSourceIndexPreview loaded)
[00:00:54]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="transformSourceIndexPreview loaded"]') with timeout=120000
[00:00:54]                 └- ✓ pass  (73ms) "transform creation_index_pattern batch transform with terms+date_histogram groups and avg agg loads the source index preview"
[00:00:54]               └-> shows the source index preview
[00:00:54]                 └-> "before each" hook: global before each
[00:00:54]                 │ debg TestSubjects.find(~transformSourceIndexPreview)
[00:00:54]                 │ debg Find.findByCssSelector('[data-test-subj~="transformSourceIndexPreview"]') with timeout=10000
[00:00:54]                 │ debg --- retry.tryForTime error: EuiInMemoryTable rows should be 5 (got 0)
[00:00:54]                 │ debg TestSubjects.find(~transformSourceIndexPreview)
[00:00:54]                 │ debg Find.findByCssSelector('[data-test-subj~="transformSourceIndexPreview"]') with timeout=10000
[00:00:54]                 └- ✓ pass  (637ms) "transform creation_index_pattern batch transform with terms+date_histogram groups and avg agg shows the source index preview"
[00:00:54]               └-> displays an empty pivot preview
[00:00:54]                 └-> "before each" hook: global before each
[00:00:54]                 │ debg TestSubjects.exists(transformPivotPreview empty)
[00:00:54]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="transformPivotPreview empty"]') with timeout=120000
[00:00:54]                 └- ✓ pass  (84ms) "transform creation_index_pattern batch transform with terms+date_histogram groups and avg agg displays an empty pivot preview"
[00:00:54]               └-> displays the query input
[00:00:54]                 └-> "before each" hook: global before each
[00:00:54]                 │ debg TestSubjects.exists(tarnsformQueryInput)
[00:00:54]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="tarnsformQueryInput"]') with timeout=120000
[00:00:54]                 │ debg TestSubjects.getVisibleText(tarnsformQueryInput)
[00:00:54]                 │ debg TestSubjects.find(tarnsformQueryInput)
[00:00:54]                 │ debg Find.findByCssSelector('[data-test-subj="tarnsformQueryInput"]') with timeout=10000
[00:00:54]                 └- ✓ pass  (101ms) "transform creation_index_pattern batch transform with terms+date_histogram groups and avg agg displays the query input"
[00:00:54]               └-> displays the advanced query editor switch
[00:00:54]                 └-> "before each" hook: global before each
[00:00:54]                 │ debg TestSubjects.exists(transformAdvancedQueryEditorSwitch)
[00:00:54]                 │ debg Find.existsByCssSelector('[data-test-subj="transformAdvancedQueryEditorSwitch"]') with timeout=120000
[00:00:55]                 │ debg TestSubjects.getAttribute(transformAdvancedQueryEditorSwitch, aria-checked)
[00:00:55]                 │ debg TestSubjects.find(transformAdvancedQueryEditorSwitch)
[00:00:55]                 │ debg Find.findByCssSelector('[data-test-subj="transformAdvancedQueryEditorSwitch"]') with timeout=10000
[00:00:55]                 └- ✓ pass  (68ms) "transform creation_index_pattern batch transform with terms+date_histogram groups and avg agg displays the advanced query editor switch"
[00:00:55]               └-> adds the group by entries
[00:00:55]                 └-> "before each" hook: global before each
[00:00:55]                 │ debg TestSubjects.exists(transformGroupBySelection > comboBoxInput)
[00:00:55]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="transformGroupBySelection"] [data-test-subj="comboBoxInput"]') with timeout=120000
[00:00:55]                 │ debg comboBox.getComboBoxSelectedOptions, comboBoxSelector: transformGroupBySelection > comboBoxInput
[00:00:55]                 │ debg TestSubjects.find(transformGroupBySelection > comboBoxInput)
[00:00:55]                 │ debg Find.findByCssSelector('[data-test-subj="transformGroupBySelection"] [data-test-subj="comboBoxInput"]') with timeout=10000
[00:00:55]                 │ debg comboBox.set, comboBoxSelector: transformGroupBySelection > comboBoxInput
[00:00:55]                 │ debg TestSubjects.find(transformGroupBySelection > comboBoxInput)
[00:00:55]                 │ debg Find.findByCssSelector('[data-test-subj="transformGroupBySelection"] [data-test-subj="comboBoxInput"]') with timeout=10000
[00:00:55]                 │ debg comboBox.setElement, value: terms(category.keyword)
[00:00:55]                 │ debg comboBox.isOptionSelected, value: terms(category.keyword)
[00:00:58]                 │ debg TestSubjects.exists(~comboBoxOptionsList)
[00:00:58]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj~="comboBoxOptionsList"]') with timeout=2500
[00:00:58]                 │ debg Find.allByCssSelector('.euiFilterSelectItem[title^="terms(category.keyword)"]') with timeout=2500
[00:00:58]                 │ debg TestSubjects.exists(~comboBoxOptionsList)
[00:00:58]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj~="comboBoxOptionsList"]') with timeout=2500
[00:01:01]                 │ debg --- retry.tryForTime error: [data-test-subj~="comboBoxOptionsList"] is not displayed
[00:01:01]                 │ debg comboBox.getComboBoxSelectedOptions, comboBoxSelector: transformGroupBySelection > comboBoxInput
[00:01:01]                 │ debg TestSubjects.find(transformGroupBySelection > comboBoxInput)
[00:01:01]                 │ debg Find.findByCssSelector('[data-test-subj="transformGroupBySelection"] [data-test-subj="comboBoxInput"]') with timeout=10000
[00:01:01]                 │ debg TestSubjects.exists(transformGroupByEntry 0)
[00:01:01]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="transformGroupByEntry 0"]') with timeout=120000
[00:01:01]                 │ debg TestSubjects.getVisibleText(transformGroupByEntry 0 > transformGroupByEntryLabel)
[00:01:01]                 │ debg TestSubjects.find(transformGroupByEntry 0 > transformGroupByEntryLabel)
[00:01:01]                 │ debg Find.findByCssSelector('[data-test-subj="transformGroupByEntry 0"] [data-test-subj="transformGroupByEntryLabel"]') with timeout=10000
[00:01:01]                 │ debg TestSubjects.exists(transformGroupBySelection > comboBoxInput)
[00:01:01]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="transformGroupBySelection"] [data-test-subj="comboBoxInput"]') with timeout=120000
[00:01:01]                 │ debg comboBox.getComboBoxSelectedOptions, comboBoxSelector: transformGroupBySelection > comboBoxInput
[00:01:01]                 │ debg TestSubjects.find(transformGroupBySelection > comboBoxInput)
[00:01:01]                 │ debg Find.findByCssSelector('[data-test-subj="transformGroupBySelection"] [data-test-subj="comboBoxInput"]') with timeout=10000
[00:01:01]                 │ debg comboBox.set, comboBoxSelector: transformGroupBySelection > comboBoxInput
[00:01:01]                 │ debg TestSubjects.find(transformGroupBySelection > comboBoxInput)
[00:01:01]                 │ debg Find.findByCssSelector('[data-test-subj="transformGroupBySelection"] [data-test-subj="comboBoxInput"]') with timeout=10000
[00:01:01]                 │ debg comboBox.setElement, value: date_histogram(order_date)
[00:01:01]                 │ debg comboBox.isOptionSelected, value: date_histogram(order_date)
[00:01:04]                 │ debg TestSubjects.exists(~comboBoxOptionsList)
[00:01:04]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj~="comboBoxOptionsList"]') with timeout=2500
[00:01:04]                 │ debg Find.allByCssSelector('.euiFilterSelectItem[title^="date_histogram(order_date)"]') with timeout=2500
[00:01:05]                 │ debg TestSubjects.exists(~comboBoxOptionsList)
[00:01:05]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj~="comboBoxOptionsList"]') with timeout=2500
[00:01:07]                 │ debg --- retry.tryForTime error: [data-test-subj~="comboBoxOptionsList"] is not displayed
[00:01:08]                 │ debg comboBox.getComboBoxSelectedOptions, comboBoxSelector: transformGroupBySelection > comboBoxInput
[00:01:08]                 │ debg TestSubjects.find(transformGroupBySelection > comboBoxInput)
[00:01:08]                 │ debg Find.findByCssSelector('[data-test-subj="transformGroupBySelection"] [data-test-subj="comboBoxInput"]') with timeout=10000
[00:01:08]                 │ debg TestSubjects.exists(transformGroupByEntry 1)
[00:01:08]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="transformGroupByEntry 1"]') with timeout=120000
[00:01:08]                 │ debg TestSubjects.getVisibleText(transformGroupByEntry 1 > transformGroupByEntryLabel)
[00:01:08]                 │ debg TestSubjects.find(transformGroupByEntry 1 > transformGroupByEntryLabel)
[00:01:08]                 │ debg Find.findByCssSelector('[data-test-subj="transformGroupByEntry 1"] [data-test-subj="transformGroupByEntryLabel"]') with timeout=10000
[00:01:08]                 │ debg TestSubjects.getVisibleText(transformGroupByEntry 1 > transformGroupByEntryIntervalLabel)
[00:01:08]                 │ debg TestSubjects.find(transformGroupByEntry 1 > transformGroupByEntryIntervalLabel)
[00:01:08]                 │ debg Find.findByCssSelector('[data-test-subj="transformGroupByEntry 1"] [data-test-subj="transformGroupByEntryIntervalLabel"]') with timeout=10000
[00:01:08]                 └- ✓ pass  (13.4s) "transform creation_index_pattern batch transform with terms+date_histogram groups and avg agg adds the group by entries"
[00:01:08]               └-> adds the aggregation entries
[00:01:08]                 └-> "before each" hook: global before each
[00:01:08]                 │ debg TestSubjects.exists(transformAggregationSelection > comboBoxInput)
[00:01:08]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj="transformAggregationSelection"] [data-test-subj="comboBoxInput"]') with timeout=120000
[00:01:08]                 │ debg comboBox.getComboBoxSelectedOptions, comboBoxSelector: transformAggregationSelection > comboBoxInput
[00:01:08]                 │ debg TestSubjects.find(transformAggregationSelection > comboBoxInput)
[00:01:08]                 │ debg Find.findByCssSelector('[data-test-subj="transformAggregationSelection"] [data-test-subj="comboBoxInput"]') with timeout=10000
[00:01:08]                 │ debg comboBox.set, comboBoxSelector: transformAggregationSelection > comboBoxInput
[00:01:08]                 │ debg TestSubjects.find(transformAggregationSelection > comboBoxInput)
[00:01:08]                 │ debg Find.findByCssSelector('[data-test-subj="transformAggregationSelection"] [data-test-subj="comboBoxInput"]') with timeout=10000
[00:01:08]                 │ debg comboBox.setElement, value: avg(products.base_price)
[00:01:08]                 │ debg comboBox.isOptionSelected, value: avg(products.base_price)
[00:01:11]                 │ debg TestSubjects.exists(~comboBoxOptionsList)
[00:01:11]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj~="comboBoxOptionsList"]') with timeout=2500
[00:01:11]                 │ debg Find.allByCssSelector('.euiFilterSelectItem[title^="avg(products.base_price)"]') with timeout=2500
[00:01:11]                 │ debg TestSubjects.exists(~comboBoxOptionsList)
[00:01:11]                 │ debg Find.existsByDisplayedByCssSelector('[data-test-subj~="comboBoxOptionsList"]') with timeout=2500
[00:01:14]                 │ERROR browser[SEVERE] http://localhost:6191/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js 399:77070 TypeError: Cannot read property 'properties' of undefined
[00:01:14]                 │          at http://localhost:6191/bundles/kibana.bundle.js:2:150943
[00:01:14]                 │          at Array.map (<anonymous>)
[00:01:14]                 │          at http://localhost:6191/bundles/kibana.bundle.js:2:150840
[00:01:14]                 │          at ca (http://localhost:6191/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js:400:59331)
[00:01:14]                 │          at Ga (http://localhost:6191/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js:400:67553)
[00:01:14]                 │          at $a (http://localhost:6191/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js:400:67372)
[00:01:14]                 │          at As (http://localhost:6191/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js:400:107875)
[00:01:14]                 │          at ml (http://localhost:6191/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js:400:90017)
[00:01:14]                 │          at fl (http://localhost:6191/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js:400:89942)
[00:01:14]                 │          at il (http://localhost:6191/bundles/kbn-ui-shared-deps/kbn-ui-shared-deps.js:400:87290)
[00:01:14]                 │ debg --- retry.tryForTime error: [data-test-subj~="comboBoxOptionsList"] is not displayed
[00:01:14]                 │ debg comboBox.getComboBoxSelectedOptions, comboBoxSelector: transformAggregationSelection > comboBoxInput
[00:01:14]                 │ debg TestSubjects.find(transformAggregationSelection > comboBoxInput)
[00:01:14]                 │ debg Find.findByCssSelector('[data-test-subj="transformAggregationSelection"] [data-test-subj="comboBoxInput"]') with timeout=10000
[00:01:24]                 │ debg --- retry.tryForTime error: Waiting for element to be located By(css selector, [data-test-subj="transformAggregationSelection"] [data-test-subj="comboBoxInput"])
[00:01:24]                 │      Wait timed out after 10041ms
[00:01:25]                 │ info Taking screenshot "/dev/shm/workspace/kibana/x-pack/test/functional/screenshots/failure/transform creation_index_pattern batch transform with terms_date_histogram groups and avg agg adds the aggregation entries.png"
[00:01:25]                 │ info Current URL is: http://localhost:6191/app/kibana/#/management/elasticsearch/transform/create_transform/5193f870-d861-11e9-a311-0fa548c5f953
[00:01:25]                 │ info Saving page source to: /dev/shm/workspace/kibana/x-pack/test/functional/failure_debug/html/transform creation_index_pattern batch transform with terms_date_histogram groups and avg agg adds the aggregation entries.html
[00:01:25]                 └- ✖ fail: "transform creation_index_pattern batch transform with terms+date_histogram groups and avg agg adds the aggregation entries"
[00:01:25]                 │

Stack Trace

Error: retry.tryForTime timeout: TimeoutError: Waiting for element to be located By(css selector, [data-test-subj="transformAggregationSelection"] [data-test-subj="comboBoxInput"])
Wait timed out after 10041ms
    at /dev/shm/workspace/kibana/node_modules/selenium-webdriver/lib/webdriver.js:841:17
    at process._tickCallback (internal/process/next_tick.js:68:7)
    at onFailure (/dev/shm/workspace/kibana/test/common/services/retry/retry_for_success.ts:28:9)
    at retryForSuccess (/dev/shm/workspace/kibana/test/common/services/retry/retry_for_success.ts:68:13)

and 1 more failures, only showing the first 3.

History

To update your PR or re-run it, just comment with:
@elasticmachine merge upstream

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
backported enhancement New value added to drive a business result Feature:Security/Authentication Platform Security - Authentication release_note:enhancement Team:Security Team focused on: Auth, Users, Roles, Spaces, Audit Logging, and more! v7.7.0
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants